Category: Kubernetes
Install MicroK8s on Linux as follows:
sudo snap install microk8s --classic
Check the node is ready:
microk8s status --wait-ready
Access the Kubernetes dashboard:
microk8s dashboard-proxy
You can enable a service or list of services
microk8s enable dashboard dns istio registry
To disable a service, specify the service name(s):
microk8s disable registry
microk8s start
microk8s stop