We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fc3f183 + 672c2a7 commit cd9b5feCopy full SHA for cd9b5fe
content/en/docs/tasks/administer-cluster/kubeadm/kubeadm-reconfigure.md
@@ -173,16 +173,10 @@ The configuration is located under the `data.config.conf` key.
173
174
Once the `kube-proxy` ConfigMap is updated, you can restart all kube-proxy Pods:
175
176
-Obtain the Pod names:
+Delete the Pods with:
177
178
```shell
179
-kubectl get po -n kube-system | grep kube-proxy
180
-```
181
-
182
-Delete a Pod with:
183
184
-```shell
185
-kubectl delete po -n kube-system <pod-name>
+kubectl delete po -n kube-system -l k8s-app=kube-proxy
186
```
187
188
New Pods that use the updated ConfigMap will be created.
0 commit comments