diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-10-02 22:14:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-10-02 22:14:19 +0000 |
commit | 66fe3f812a21ffc4da4404d7461505daac5d345e (patch) | |
tree | f49c971f1d9b7381283c3b27e2485ed63efad2e5 | |
parent | 898cd51e6f55a32e882fba86f5dac32e6d89b1ca (diff) | |
parent | 3f5d0384364bbabcfbf68128e3b7e347aceddbe6 (diff) |
Merge "load_images.sh: Add missing ssh_options" into stable/euphrates
-rwxr-xr-x | tests/ci/load_images.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/ci/load_images.sh b/tests/ci/load_images.sh index 89ebb2dde..689d919e2 100755 --- a/tests/ci/load_images.sh +++ b/tests/ci/load_images.sh @@ -20,6 +20,7 @@ fi # Look for a compute node, that is online, and check if it is aarch64 if [ "${INSTALLER_TYPE}" == 'fuel' ]; then + ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" COMPUTE_ARCH=$(ssh -l ubuntu ${INSTALLER_IP} -i ${SSH_KEY} ${ssh_options} \ "sudo salt 'cmp*' grains.get cpuarch --out yaml | awk '{print \$2; exit}'") if [ "${COMPUTE_ARCH}" == 'aarch64' ]; then |