summaryrefslogtreecommitdiff
path: root/internal/suites/example/kube/bootstrap-dashboard.sh
diff options
context:
space:
mode:
Diffstat (limited to 'internal/suites/example/kube/bootstrap-dashboard.sh')
-rwxr-xr-xinternal/suites/example/kube/bootstrap-dashboard.sh11
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