Install MicroK8s on Linux
sudo snap install microk8s --classic
Check the status while Kubernetes starts
microk8s status --wait-ready
Turn on the services you want
microk8s enable dashboard dns registry istio
Try
microk8s enable --help
for a list of available services and optional features.
microk8s disable <name>
turns off a service.
Start using Kubernetes
microk8s kubectl get all --all-namespaces
Access the Kubernetes dashboard
microk8s dashboard-proxy
Start and stop Kubernetes to save battery
If you don’t need them running in the background then you will save battery by stopping them.
microk8s start
and
microk8s stop
to stop.
Top comments (0)