Install MicroK8s (deprecated)

This describes how to install MicroK8s on a machine that has access to the internet.

  1. Connect to the machine that will host Cyberwatch with a root account.

  2. Install snapd for your distribution.

  3. Ensure that snapd service is started and enabled:

    systemctl enable snapd --now
    
  4. Activate classic snaps:

    test -d /snap || ln -s /var/lib/snapd/snap /snap
    
  5. Install microk8s using the snap package manager:

    snap install microk8s --classic
    

When deploying Cyberwatch, next step is to install Cyberwatch.


Back to top