I have 3 nodes in kubernetes cluster. I create a daemonset
and deployed it in all the 3 devices. This daemonset
created 3 pods and they were successfully running. But for some reasons, one of the pod failed.
I need to know how can we restart this pod without affecting other pods in the daemon set, also without creating any other daemon set deployment?
Thanks
kubectl describe pod
for the failed pod would help. You can list terminated pods withkubectl get pod -a
– Thomas Koch