diff options
author | Georg Kunz <georg.kunz@est.tech> | 2020-08-27 21:43:22 +0200 |
---|---|---|
committer | Rihab Banday <rihab.banday@ericsson.com> | 2020-09-10 10:29:00 +0000 |
commit | 42b76853c5ba0ad53aa04ae6cab4bd1de2db7b42 (patch) | |
tree | f59bd81a22a832fd46488ddbe066ee3de54ced60 | |
parent | 85c03eea36273b89427e8466f12274e69918dee6 (diff) |
Fixing broken copy of BMRA host_vars
The host_vars directory is not correctly copied during deployment
resulting in a deployment failure.
Signed-off-by: Georg Kunz <georg.kunz@est.tech>
Change-Id: Ic56c9073d7f535245aafe9b962b627622052a9a0
Reviewed-on: https://gerrit.opnfv.org/gerrit/c/kuberef/+/70893
Tested-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
Reviewed-by: Rihab Banday <rihab.banday@ericsson.com>
-rwxr-xr-x | functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.sh b/functions.sh index f991dc8..4d75ee1 100755 --- a/functions.sh +++ b/functions.sh @@ -203,7 +203,7 @@ if ! command -v docker; then fi if [ ! -d "${PROJECT_ROOT}/container-experience-kits" ]; then git clone --recurse-submodules --depth 1 https://github.com/intel/container-experience-kits.git -b v1.4.1 ${PROJECT_ROOT}/container-experience-kits/ - cp -r ${PROJECT_ROOT}/container-experience-kits/examples/group_vars examples/host_vars ${PROJECT_ROOT}/container-experience-kits/ + cp -r ${PROJECT_ROOT}/container-experience-kits/examples/{group_vars,host_vars} ${PROJECT_ROOT}/container-experience-kits/ #TODO Remove this once the reported issue is fixed in the next BMRA Release sed -i '/\openshift/a \ extra_args: --ignore-installed PyYAML' \ ${PROJECT_ROOT}/container-experience-kits/roles/net-attach-defs-create/tasks/main.yml |