Hi @37821879 , to restart the ingress pods , you need to get the deployment 1st then restart
kubectl get deployments -A
Then you restart the ingress controller deployment
kubectl rollout restart deployment/<deployment-name> -n namespace
to delete them you want to know how you install the ingress controller is it by helm or by yaml ? kindly run
helm list -A
and then
helm uninstall my-release -n namespace
if you deploy by YAML simply delete the deployment please mark as answer if this help