Skip to content

Commit

Permalink
Simplify kube-proxy refresh once the kube-proxy ConfigMap is updated
Browse files Browse the repository at this point in the history
  • Loading branch information
aivantsov authored Dec 8, 2024
1 parent 2598ffc commit 672c2a7
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 672c2a7

Please sign in to comment.