Move tests plan from dagger dir to universe
Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
31
stdlib/kubernetes/kustomize/tests/kustomize.cue
Normal file
31
stdlib/kubernetes/kustomize/tests/kustomize.cue
Normal file
@@ -0,0 +1,31 @@
|
||||
package kustomize
|
||||
|
||||
import (
|
||||
"encoding/yaml"
|
||||
"dagger.io/dagger"
|
||||
)
|
||||
|
||||
TestKustomize: {
|
||||
testdata: dagger.#Artifact
|
||||
|
||||
// Run Kustomize
|
||||
kustom: #Kustomize & {
|
||||
source: testdata
|
||||
kustomization: yaml.Marshal({
|
||||
resources: ["deployment.yaml", "pod.yaml"]
|
||||
images: [{
|
||||
name: "nginx"
|
||||
newTag: "v1"
|
||||
}]
|
||||
replicas: [{
|
||||
name: "nginx-deployment"
|
||||
count: 2
|
||||
}]
|
||||
})
|
||||
}
|
||||
|
||||
// Verify kustomization generation
|
||||
verify: #VerifyKustomize & {
|
||||
source: kustom
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user