author avatar

nisanth

Mon Jun 10 2024

Restarting a DaemonSet in Kubernetes #devops #kubernetes

To find a DaemonSet in a specific namespace:

kubectl get ds -n <namespace>

To restart the DaemonSet:

kubectl rollout restart ds <name-of-the-daemon-set> -n <namespace>