From 561feb280c48aa82e9f16e89c76587b145abfab8 Mon Sep 17 00:00:00 2001 From: Johann Schley <65346790+oujonny@users.noreply.github.com> Date: Thu, 30 Apr 2026 21:38:45 +0200 Subject: [PATCH] Update containerd instructions for stopping ovs-ovn Added instructions for stopping ovs-ovn container when using containerd. --- docs/ops/delete-worker-node.en.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/ops/delete-worker-node.en.md b/docs/ops/delete-worker-node.en.md index 23d39d517..2af9101f2 100644 --- a/docs/ops/delete-worker-node.en.md +++ b/docs/ops/delete-worker-node.en.md @@ -32,11 +32,23 @@ systemctl stop kubelet systemctl stop docker ``` -If using containerd as the CRI, the following command needs to be executed to stop the `ovs-ovn` container: +### Containerd +> In case of containerd, stopping the services does not stop the running pods/containers; it is required to stop ovs-ovn manually. +With conatinerd the following command needs to be executed to stop the `ovs-ovn` container: + +1. Stop kubelet +```bash +systemctl stop kubelet +``` +2. Remove ovs-ovn pod ```bash crictl rm -f $(crictl ps | grep openvswitch | awk '{print $1}') ``` +3. Stop containerd +```bash +systemctl stop containerd +``` ## Cleanup Files on Node