MicroK8s is a lightweight Kubernetes distribution developed by Canonical, the company behind Ubuntu.
It is designed for developers and users who want to deploy and manage Kubernetes clusters easily on their local machines or small-scale environments.
#sudo snap install microk8s –classic
#sudo snap install microk8s –classic
#microk8s enable dns
#microk8s enable dashboard
#microk8s enable storage
#microk8s kubectl get all –all-namespaces
Kubernetes dashboard;
token=$(microk8s kubectl -n kube-system get secret | grep default-token | cut -d ” ” -f1)
microk8s kubectl -n kube-system describe secret $token
If it not working try below one;
#microk8s dashboard-proxy
check result

Leave a comment