Last active
May 22, 2019 19:10
-
-
Save jwkidd3/60da7ecad170fbb3e0e1fcc87d8274d4 to your computer and use it in GitHub Desktop.
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
Install Dashboard: | |
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended/kubernetes-dashboard.yaml | |
Get the Pods: | |
kubectl get pods --namespace=kube-system | |
Forward the Dashboard Port: | |
kubectl port-forward kubernetes-dashboard-<YOUR DASHBOARD ID> 8443:8443 --namespace=kube-system | |
To get Token: | |
kubectl -n kube-system describe secret $(kubectl -n kube-system get secret | awk '/^deployment-controller-token-/{print $1}') | awk '$1=="token:"{print $2}' | |
https://k8s.io/examples/application/deployment.yaml | |
kubectl create deployment hello-node --image=gcr.io/hello-minikube-zero-install/hello-node | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment