diff --git a/slides/k8s/cni.md b/slides/k8s/cni.md
index b468f1ee..beed0635 100644
--- a/slides/k8s/cni.md
+++ b/slides/k8s/cni.md
@@ -300,8 +300,6 @@ class: extra-details
]
-Note: the DaemonSet won't create any pods (yet) since there are no nodes (yet).
-
---
## Restarting kubelets
@@ -329,6 +327,29 @@ Note: the DaemonSet won't create any pods (yet) since there are no nodes (yet).
---
+## Check kuberouter pods
+
+- Make sure that kuberouter pods are running
+
+.exercise[
+
+- List pods in the `kube-system` namespace:
+ ```bash
+ kubectl get pods --namespace=kube-system
+ ```
+
+]
+
+If the pods aren't running, it could be:
+
+- privileged containers aren't enabled
+
(add `--allow-privileged` flag to the API server)
+
+- missing service account token
+
(add `--disable-admission-plugins=ServiceAccount` flag)
+
+---
+
## Testing
- Let's delete all pods