added k3d test scripts

This commit is contained in:
James Wynn 2023-01-11 09:47:34 -06:00
parent 98ce0e8c2e
commit b724f520cd
12 changed files with 283 additions and 0 deletions

9
k3d/k3d-up.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
k3d cluster create --config k3d.yaml --wait
k3d kubeconfig get homepage > kubeconfig
chmod 600 kubeconfig
export KUBECONFIG=$(pwd)/kubeconfig
echo "Waiting for traefik install job to complete (CTRL+C is safe if you're impatient)"
kubectl wait jobs/helm-install-traefik -n kube-system --for condition=complete --timeout 90s && echo "Completed" || echo "Timed out"