I've just installed k3s on my notebook (Ubuntu). Works fine. Great project. However, i do not need it to run 24/7 so, how do I properly shutdown the k3s cluster. Oddly, I cannot find anything about this in the documentation. Thanks
Asked
Active
Viewed 1.5k times
1 Answers
18
There is a systemd shutdown task (/etc/systemd/system/k3s.service) which stops the server, but not the k8s resources (pods, networks, etc). For this there is a utility script k3s-killall.sh which should be at /usr/local/bin/k3s-killall.sh
Bruce Becker
- 3,573
- 4
- 19
- 40
sudo systemctl stop k3s, and stop it restarting when you reboot withsudo systemctl disable k3s. – Richard Whitehead Sep 30 '21 at 09:49