This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/argocd/tests/argocd.cue
Tom Chauveau 2a91ae1d80 Update argoCD test
Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
2021-09-10 09:10:21 -07:00

29 lines
618 B
CUE

package argocd
import (
"alpha.dagger.io/dagger"
"alpha.dagger.io/os"
)
TestConfig: argocdConfig: #Config & {
version: dagger.#Input & {*"v2.0.5" | string}
server: dagger.#Input & {*"dagger-example-argocd-server.tld" | string}
token: dagger.#Input & {dagger.#Secret}
}
TestArgoCD: os.#Container & {
image: #CLI & {
config: TestConfig.argocdConfig
}
always: true
command: #"""
argocd version --output json | jq -e 'all(.client.Version; startswith("$VERSION"))'
"""#
env: VERSION: TestConfig.argocdConfig.version
}
TestArgoCDStatus: #Status & {
config: TestConfig.argocdConfig
name: "test"
}