Use gcloud compute scp instead of copy-files

This commit is contained in:
Michael McClanahan
2017-05-30 13:47:24 -05:00
committed by Kelsey Hightower
parent 1c53942442
commit 2983b28f13
2 changed files with 7 additions and 7 deletions

View File

@@ -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
```
```