diff options
author | Andrii Ostapenko <aostapenko@mirantis.com> | 2017-06-09 14:39:18 +0300 |
---|---|---|
committer | Andrii Ostapenko <aostapenko@mirantis.com> | 2017-06-09 15:46:38 +0300 |
commit | 4f68016daa6b8bff677b9915b411fda388f5505d (patch) | |
tree | 2c3779e763bc30718d32b7f4d764494612ab9aae /ci | |
parent | d433573b98d288feaff518dd3ac9a5b19e35f1e6 (diff) |
[mcp] Copy ssh key to tmp dir
Copy ssh key to tmp dir to be able to retrieve
OS credentials by releng/utils/fetch_os_creds.sh
Also adds 'set -x' to ci/deploy.sh
Change-Id: I056c626288862f84f47c947461894730ce0483ac
Signed-off-by: Andrii Ostapenko <aostapenko@mirantis.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/deploy.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 500d26e41..54b090254 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -e +set -ex ############################################################################## # Copyright (c) 2015 Ericsson AB and others. # jonas.bjurel@ericsson.com @@ -248,7 +248,7 @@ esac export CLUSTER_DOMAIN export SSH_KEY=mcp.rsa -export SALT_MASTER=192.168.10.100 +export SALT_MASTER=$SALT_MASTER_IP export SSH_OPTS="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ${SSH_KEY}" ./infra.sh |