tests(stdlib/k8s/helm): test basic helm chart

tests(stdlib/k8s/helm): add verification
style(tests/): rename helper into verify to confirm that deployments works

Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
Tom Chauveau
2021-04-09 16:46:25 +02:00
parent e19a71e67c
commit 32d523aa71
18 changed files with 496 additions and 57 deletions

View File

@@ -17,6 +17,15 @@ test::stdlib(){
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/stdlib/file
test::secret "$d"/stdlib/netlify/inputs.yaml "stdlib: netlify" \
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/stdlib/netlify
test::one "stdlib:: kubernetes" \
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/stdlib/kubernetes --input-dir TestKubeconfig="/home/$USER/.kube" --input-string uid="dagger-id"
# Check if there is a kubeconfig and if it for a kind cluster
if [ -f ~/.kube/config ] && grep -q "kind" ~/.kube/config &> /dev/null; then
test::one "stdlib: kubernetes" \
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/stdlib/kubernetes --input-dir kubeconfig=~/.kube
test::one "stdlib: helm" \
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/stdlib/kubernetes/helm --input-dir kubeconfig=~/.kube --input-dir TestHelmSimpleChart.deploy.chartSource="$d"/stdlib/kubernetes/helm/testdata/mychart
else
logger::warning "Skip kubernetes test: local cluster not available"
fi
}