To install the Kubernetes dashboard, follow these simple steps:
- Install the kubernetes-dashboard Helm chart:
$ helm install stable/kubernetes-dashboard --name k8web --namespace kube-system --set fullnameOverride="dashboard"
Add --tls to the preceding command if you're planning to use a secure helm for your Kubernetes installation.
- Check Kubernetes pods:
$ kubectl get pods -n kube-system
NAME READY STATUS RESTARTS AGE
calico-kube-controllers-866db6d5f7-w9mfq 1/1 Running 0 170m
calico-node-mwgzx 1/1 Running 0 170m
coredns-bb49df795-lcjvx 1/1 Running 0 173m
coredns-bb49df795-wqmzb 1/1 Running 0 173m
etcd-osc01 1/1 Running 0 173m
k8web...