Use gcloud compute scp instead of copy-files
parent
1c53942442
commit
2983b28f13
|
@ -267,16 +267,16 @@ kubernetes.pem
|
|||
|
||||
Set the list of Kubernetes hosts where the certs should be copied to:
|
||||
|
||||
The following commands will copy the TLS certificates and keys to each Kubernetes host using the `gcloud compute copy-files` command.
|
||||
The following commands will copy the TLS certificates and keys to each Kubernetes host using the `gcloud compute scp` command.
|
||||
|
||||
```
|
||||
for host in worker0 worker1 worker2; do
|
||||
gcloud compute copy-files ca.pem kube-proxy.pem kube-proxy-key.pem ${host}:~/
|
||||
gcloud compute scp ca.pem kube-proxy.pem kube-proxy-key.pem ${host}:~/
|
||||
done
|
||||
```
|
||||
|
||||
```
|
||||
for host in controller0 controller1 controller2; do
|
||||
gcloud compute copy-files ca.pem ca-key.pem kubernetes-key.pem kubernetes.pem ${host}:~/
|
||||
gcloud compute scp ca.pem ca-key.pem kubernetes-key.pem kubernetes.pem ${host}:~/
|
||||
done
|
||||
```
|
|
@ -54,7 +54,7 @@ Distribute the bootstrap token file to each controller node:
|
|||
|
||||
```
|
||||
for host in controller0 controller1 controller2; do
|
||||
gcloud compute copy-files token.csv ${host}:~/
|
||||
gcloud compute scp token.csv ${host}:~/
|
||||
done
|
||||
```
|
||||
|
||||
|
@ -135,6 +135,6 @@ kubectl config use-context default --kubeconfig=kube-proxy.kubeconfig
|
|||
|
||||
```
|
||||
for host in worker0 worker1 worker2; do
|
||||
gcloud compute copy-files bootstrap.kubeconfig kube-proxy.kubeconfig ${host}:~/
|
||||
gcloud compute scp bootstrap.kubeconfig kube-proxy.kubeconfig ${host}:~/
|
||||
done
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue