How do I restore a component?

When a component is defective and there are no other solutions presented in the documentation, you must renew the pod connected to the component. To do this, you must delete the pod.

This prompts Kubernetes to automatically create a new pod according to the deployment instructions. The new pod will either be a statefulSet or a daemonSet, depending on the nature of the pod.

To delete your pod and prompt the automatic creation of a new pod, run the following command line, replacing <namespace> and <pod_name>:

kubectl -n <namespace> delete pod <pod_name>