diff options
author | Abhijit Sinha <abhijit.sinha@intel.com> | 2018-02-05 09:45:03 +0000 |
---|---|---|
committer | Abhijit Sinha <abhijit.sinha@intel.com> | 2018-02-05 09:48:30 +0000 |
commit | 8c4c69c8fe2e6b9e62034dc1a92d0be0ea7df00c (patch) | |
tree | adc248abf728bf39f8427e6072661b2dd46e33dc /ansible | |
parent | e5775e7efbc55f116b4d4ac11ff87b8d8553247e (diff) |
BugFIX: NSB-setup build script fix for BM
JIRA: YARDSTICK-994
The NSB set-up script for baremetal is broken.
In nsb_setp.yml file, "Prepare baremetal machine"
is commented due to which the ubuntu_server_baremetal_deploy_samplevnfs.yml
file is never called.
Change-Id: Icc95018ba746d6efa5baf09322b3255806da8952
Signed-off-by: Abhijit Sinha <abhijit.sinha@intel.com>
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/nsb_setup.yml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ansible/nsb_setup.yml b/ansible/nsb_setup.yml index bfe5d2349..98a59f984 100644 --- a/ansible/nsb_setup.yml +++ b/ansible/nsb_setup.yml @@ -12,18 +12,18 @@ # See the License for the specific language governing permissions and # limitations under the License. --- -#- name: Prepare baremetal machine -# include: ubuntu_server_baremetal_deploy_samplevnfs.yml -# vars: -# YARD_IMG_ARCH: amd64 -# -#- name: Install jumphost dependencies and configure docker -# hosts: jumphost -# environment: -# "{{ proxy_env }}" -# roles: -# - install_dependencies -# - docker +- name: Prepare baremetal machine + include: ubuntu_server_baremetal_deploy_samplevnfs.yml + vars: + YARD_IMG_ARCH: amd64 + +- name: Install jumphost dependencies and configure docker + hosts: jumphost + environment: + "{{ proxy_env }}" + roles: + - install_dependencies + - docker - name: "handle all openstack stuff when: openrc_file is defined" include: prepare_openstack.yml |