From 4ced57eae63a52ea517d4087662726d942da8441 Mon Sep 17 00:00:00 2001 From: leonwang Date: Thu, 16 Aug 2018 09:27:32 +0800 Subject: Fix some bugs about ansible deployment According to the feedback from Compass4NFV team, the goal of this patch is for: 1. Add notario package install step 2. Ignore the error of checking ceph osd and mon service 3. Move nbp-installer role to the last one to install Change-Id: Id6555cd9cd2877dc21ee5a92774c514b7c3fca34 Signed-off-by: leonwang --- ci/ansible/roles/nbp-installer/tasks/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ci/ansible/roles/nbp-installer/tasks/main.yml') diff --git a/ci/ansible/roles/nbp-installer/tasks/main.yml b/ci/ansible/roles/nbp-installer/tasks/main.yml index dd13195..09764a5 100644 --- a/ci/ansible/roles/nbp-installer/tasks/main.yml +++ b/ci/ansible/roles/nbp-installer/tasks/main.yml @@ -19,6 +19,7 @@ state: present with_items: - open-iscsi + when: nbp_plugin_type != "hotpot_only" - name: create nbp work directory if it doesn't exist file: @@ -27,14 +28,15 @@ mode: 0755 with_items: - "{{ nbp_work_dir }}" + when: nbp_plugin_type != "hotpot_only" - name: include scenarios/repository.yml when installing from repository include: scenarios/repository.yml - when: install_from == "repository" + when: install_from == "repository" and nbp_plugin_type != "hotpot_only" - name: include scenarios/release.yml when installing from release include: scenarios/release.yml - when: install_from == "release" + when: install_from == "release" and nbp_plugin_type != "hotpot_only" - name: include scenarios/flexvolume.yml when nbp plugin type is flexvolume include: scenarios/flexvolume.yml -- cgit 1.2.3-korg