You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# install the binary with snap
sudo snap install microk8s --classic --channel=1.19
# add your current user to the group and gain access to the .kube caching directory
sudo usermod -a -G microk8s $USER
sudo chown -f -R $USER~/.kube
# MicroK8s uses a namespaced kubectl command to prevent conflicts with any existing installs of kubectl# to use kubectl add alias to ~/.bash_aliasesalias kubectl='microk8s kubectl'# MicroK8s uses the minimum of components for a pure, lightweight Kubernetes# it is recommended to add DNS management to facilitate communication between services
microk8s enable dns