Merge pull request #48978 from aivantsov/patch-1

Simplify kube-proxy refresh once the kube-proxy ConfigMap is updated
This commit is contained in:
Kubernetes Prow Robot 2024-12-10 10:14:03 +00:00 committed by GitHub
commit cd9b5fe693
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 8 deletions

View File

@ -173,16 +173,10 @@ The configuration is located under the `data.config.conf` key.
Once the `kube-proxy` ConfigMap is updated, you can restart all kube-proxy Pods:
Obtain the Pod names:
Delete the Pods with:
```shell
kubectl get po -n kube-system | grep kube-proxy
```
Delete a Pod with:
```shell
kubectl delete po -n kube-system <pod-name>
kubectl delete po -n kube-system -l k8s-app=kube-proxy
```
New Pods that use the updated ConfigMap will be created.