Installing K3s :old delete

Installation of K3s on debian Box :


  1. Refer this link : https://docs.k3s.io/quick-start

 Install using script : curl -sfL https://get.k3s.io | sh -


  1. Star and confirm whether installation is successful :

            sudo systemctl start k3s


            sudo systemctl status k3s.service


  1. Enable the k3s service :

            sudo systemctl enable k3s


Error description and troubleshooting:

  1.   failed to find cpu cgroup (v2) : 

Refer Links : 

  1. https://rootlesscontaine.rs/getting-started/common/cgroup2/


2. Enabling cgroup V2 :

  1. Edit the grub configuration file : 

           sudo nano /etc/default/grup


  1. Add the following line in GRUB_CMDLINE_LINUX : 

           systemd.unified_cgroup_hierarchy=1


  1. Update grub and reboot the system : 

            sudo update-grub

            reboot