Split definition into files and add #App to create argocd project
Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
63
stdlib/argocd/status.cue
Normal file
63
stdlib/argocd/status.cue
Normal file
@@ -0,0 +1,63 @@
|
||||
package argocd
|
||||
|
||||
import (
|
||||
"alpha.dagger.io/dagger"
|
||||
"alpha.dagger.io/dagger/op"
|
||||
)
|
||||
|
||||
// Get application's status
|
||||
#Status: {
|
||||
// ArgoCD configuration
|
||||
config: #Config
|
||||
|
||||
// ArgoCD application
|
||||
name: dagger.#Input & {string}
|
||||
|
||||
// ArgoCD CLI output
|
||||
outputs: {
|
||||
// Application health
|
||||
health: dagger.#Output & {string}
|
||||
|
||||
// Application sync state
|
||||
sync: dagger.#Output & {string}
|
||||
|
||||
// Namespace
|
||||
namespace: dagger.#Output & {string}
|
||||
|
||||
// Server
|
||||
server: dagger.#Output & {string}
|
||||
|
||||
// Comma separated list of application URLs
|
||||
urls: dagger.#Output & {string}
|
||||
|
||||
// Last operation state message
|
||||
state: dagger.#Output & {string}
|
||||
}
|
||||
|
||||
outputs: #up: [
|
||||
op.#Load & {
|
||||
from: #CLI & {
|
||||
"config": config
|
||||
}
|
||||
},
|
||||
|
||||
op.#Exec & {
|
||||
args: ["sh", "-c",
|
||||
#"""
|
||||
ls ~/.argocd
|
||||
cat ~/.argocd/config
|
||||
argocd app get "$APPLICATION" --output json | jq '{health:.status.health.status,sync:.status.sync.status,namespace:.spec.destination.namespace,server:.spec.destination.server,urls:.status.summary.externalURLs|join(","),state:.status.operationState.message}' > /output.json
|
||||
"""#,
|
||||
]
|
||||
env: {
|
||||
APPLICATION: name
|
||||
ARGOCD_OPTS: "--port-forward-namespace argocd"
|
||||
}
|
||||
},
|
||||
|
||||
op.#Export & {
|
||||
source: "/output.json"
|
||||
format: "json"
|
||||
},
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user