Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Last active May 22, 2019 19:10
Show Gist options
  • Save jwkidd3/60da7ecad170fbb3e0e1fcc87d8274d4 to your computer and use it in GitHub Desktop.
Save jwkidd3/60da7ecad170fbb3e0e1fcc87d8274d4 to your computer and use it in GitHub Desktop.
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