diff options
author | Volodymyr Mytnyk <volodymyrx.mytnyk@intel.com> | 2019-02-04 08:23:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-02-04 08:23:19 +0000 |
commit | 1af0aec8013848bfadb81994a37d5d6b0aa121b3 (patch) | |
tree | acb0a63224c9cee8d18243f4c037e9e60c9524e4 /nsb_setup.sh | |
parent | 2697582f46264a7c6e5eafeb98dbfe8f9c0d81b2 (diff) | |
parent | 62a5d6bfc8480dfd0bfa2d6937f31125ba443e56 (diff) |
Merge "Replace script to install.yaml in nsb_setup.sh"
Diffstat (limited to 'nsb_setup.sh')
-rwxr-xr-x | nsb_setup.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/nsb_setup.sh b/nsb_setup.sh index 335db8dd2..2e244cf00 100755 --- a/nsb_setup.sh +++ b/nsb_setup.sh @@ -131,9 +131,11 @@ pip install ansible==2.5.5 shade==1.22.2 docker-py==1.10.6 ANSIBLE_SCRIPTS="ansible" -cd ${ANSIBLE_SCRIPTS} &&\ +cd ${ANSIBLE_SCRIPTS} && \ ansible-playbook \ - -e img_property="nsb" \ - -e YARD_IMG_ARCH='amd64' ${extra_args}\ - -i install-inventory.ini nsb_setup.yml + -e IMAGE_PROPERTY='nsb' \ + -e OS_RELEASE='xenial' \ + -e INSTALLATION_MODE='container_pull' \ + -e YARD_IMAGE_ARCH='amd64' ${extra_args} \ + -i install-inventory.ini install.yaml |