Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 600 Bytes

install-microk8s-on-linux.md

File metadata and controls

45 lines (30 loc) · 600 Bytes

Install MicroK8s on Linux

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

Enable or disable services

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

Start or stop MicroK8s

microk8s start
microk8s stop