diff options
| author | Amir Zarrinkafsh <nightah@me.com> | 2022-12-13 10:15:32 +1100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-13 10:15:32 +1100 | 
| commit | 505a7e90b3f13883999055b63ec887b6fa5fb0e5 (patch) | |
| tree | bea902173ef62f531d5ba1117e38df904b2887ba /internal/suites/example/kube/bootstrap-dashboard.sh | |
| parent | 180620e519c547847d05a5649c7275d5beb5cc37 (diff) | |
refactor(suites): replace kind with k3d (#4553)
This change replaces Kind with a might lighter K8s variation K3D.
Many of our manifests have also been consolidated.
Other key changes have been highlighted below:
* Utilise K3D Traefik Ingress
* Automatically provision all manifests, removing the abundance of shell scripts
* Expose Traefik and K8s dashboards through the Ingress
Diffstat (limited to 'internal/suites/example/kube/bootstrap-dashboard.sh')
| -rwxr-xr-x | internal/suites/example/kube/bootstrap-dashboard.sh | 11 | 
1 files changed, 0 insertions, 11 deletions
diff --git a/internal/suites/example/kube/bootstrap-dashboard.sh b/internal/suites/example/kube/bootstrap-dashboard.sh deleted file mode 100755 index bbaddf893..000000000 --- a/internal/suites/example/kube/bootstrap-dashboard.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -start_dashboard() { -  kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-beta8/aio/deploy/recommended.yaml -  kubectl apply -f dashboard.yml - -  echo "Bearer token for UI user." -  kubectl -n kubernetes-dashboard describe secret $(kubectl -n kubernetes-dashboard get secret | grep admin-user | awk '{print $1}') -} - -start_dashboard  | 
