Replace gcloud compute scp by scp (classical)

pull/582/head
Nemo 2020-06-20 14:37:00 +02:00
parent 89b4c4dc97
commit ecb321ed3f
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ Copy the `encryption-config.yaml` encryption config file to each controller inst
```bash ```bash
for instance in controller-0 controller-1 controller-2; do for instance in controller-0 controller-1 controller-2; do
gcloud compute scp encryption-config.yaml ${instance}:~/ scp encryption-config.yaml root@${instance}:~/
done done
``` ```