Kube Dashboard on Master Node
26 Jan 2017Putting this here so I don’t forget.
First we need to make it so we can schedule pods to master. So, let’s taint the node (thanks Sam!)
kubectl taint nodes --all dedicated-
Then add this to the kubernetes-dashboard.yaml, replacing master-node for your environment.
spec:
containers:
- name: kubernetes-dashboard
image: gcr.io/google_containers/kubernetes-dashboard-arm:v1.5.1
*** some stuff ***
nodeSelector:
kubernetes.io/hostname: master-node