modified: README.md

This commit is contained in:
Márcio Fernandes
2026-07-13 13:08:52 +00:00
parent 88c70a96ab
commit 3433a2f7f2
+12
View File
@@ -57,6 +57,7 @@ Kubernetes is an opensource platform that automates the deployment, scaling,
- [k3s](#k3s)
- [Install / Setup](#install--setup)
- [prune old images](#prune-old-images)
- [kill all](#kill-all)
- [Prune ephemeral containerd data](#prune-ephemeral-containerd-data)
- [check system logs](#check-system-logs)
- [Workarounds \& Fixes](#workarounds--fixes)
@@ -832,6 +833,17 @@ crictl rmi --prune
sudo ctr --address /run/k3s/containerd/containerd.sock images prune --all
```
### kill all
``` bash
k3s-killall.sh
```
If k3s using mount. Force kill by mount
```bash
kill -9 $(lsof +f -- /mount | awk 'NR>1 {print $2}')
```
### Prune ephemeral containerd data