patch-reset (#11978)

* patch-reset

We should reset IPVS tables do so manually when reset kubernetes cluster by kubeadm.

* Modify reset ipvs description

* Update create-cluster-kubeadm.md
pull/12107/head
MengZeLee 2019-01-07 17:09:14 +08:00 committed by Kubernetes Prow Robot
parent b03912667f
commit 2317f4c82b
1 changed files with 6 additions and 0 deletions

View File

@ -551,6 +551,12 @@ The reset process does not reset or clean up iptables rules or IPVS tables. If y
iptables -F && iptables -t nat -F && iptables -t mangle -F && iptables -X
```
If you want to reset the IPVS tables, you must run the following command:
```bash
ipvsadm -C
```
If you wish to start over simply run `kubeadm init` or `kubeadm join` with the
appropriate arguments.