File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed
content/zh-cn/docs/tasks/administer-cluster/kubeadm Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -324,27 +324,18 @@ The configuration is located under the `data.config.conf` key.
324
324
#### Reflecting the kube-proxy changes
325
325
326
326
Once the `kube-proxy` ConfigMap is updated, you can restart all kube-proxy Pods:
327
-
328
- Obtain the Pod names:
329
-
330
327
-->
331
328
#### 反映 kube-proxy 的更改
332
329
333
330
更新 ` kube-proxy ` ConfigMap 后,你可以重新启动所有 kube-proxy Pod:
334
331
335
- 获取 Pod 名称:
336
-
337
- ``` shell
338
- kubectl get po -n kube-system | grep kube-proxy
339
- ```
340
-
341
332
<!--
342
- Delete a Pod with:
333
+ Delete the Pods with:
343
334
-->
344
335
使用以下命令删除 Pod:
345
336
346
337
``` shell
347
- kubectl delete po -n kube-system < pod-name >
338
+ kubectl delete po -n kube-system -l k8s-app=kube-proxy
348
339
```
349
340
350
341
<!--
You can’t perform that action at this time.
0 commit comments