Created
October 11, 2018 07:23
-
-
Save turkenh/5321de47aba17353bd237f2589472bb5 to your computer and use it in GitHub Desktop.
Run a local kubernetes dashboard for remote kubernetes cluster
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
KUBECONFIG=${KUBECONFIG:-"$HOME/.kube/config"} | |
docker run -v "${KUBECONFIG}":/tmp/config -p 8443:8443 k8s.gcr.io/kubernetes-dashboard-amd64:v1.10.0 \ | |
--auto-generate-certificates --kubeconfig=/tmp/config --disable-skip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Open https://localhost:8443