fix(k8s-setup-ha): error when copy pki to other nodes (#7949)

`rm aipserver.crt` is not enought, must be `rm apiserver.*` here
This commit is contained in:
pc
2018-04-05 02:59:09 +08:00
committed by k8s-ci-robot
parent 8c1c0ad5ea
commit bf4b930864
+1 -1
View File
@@ -549,7 +549,7 @@ Before running kubeadm on the other masters, you need to first copy the K8s CA c
```shell ```shell
scp root@<master0-ip-address>:/etc/kubernetes/pki/* /etc/kubernetes/pki scp root@<master0-ip-address>:/etc/kubernetes/pki/* /etc/kubernetes/pki
rm apiserver.crt rm apiserver.*
``` ```
#### Option 2: Copy paste #### Option 2: Copy paste