aboutsummaryrefslogtreecommitdiffstats
path: root/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/main.yml
diff options
context:
space:
mode:
authorManuel Buil <mbuil@suse.com>2017-11-08 13:20:51 +0100
committerManuel Buil <mbuil@suse.com>2017-11-29 13:06:37 +0100
commita72cc42077b96223ad6e776a4cd0f03a3c41bd29 (patch)
treebe2151aac078730077471962e2aff586cd2c58b0 /scenarios/os-odl-sfc/role/os-odl-sfc/tasks/main.yml
parentf19a910411260203ff33d290e7460a296f5786fc (diff)
[WIP] Adapt XCI scenarios for Fraser
We plan to support both stable/pike and master in the Fraser release Change-Id: I5acd5d796a4ed376d5110d7268980faec9cec126 Signed-off-by: Manuel Buil <mbuil@suse.com>
Diffstat (limited to 'scenarios/os-odl-sfc/role/os-odl-sfc/tasks/main.yml')
-rw-r--r--scenarios/os-odl-sfc/role/os-odl-sfc/tasks/main.yml18
1 files changed, 14 insertions, 4 deletions
diff --git a/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/main.yml b/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/main.yml
index f1fdcf2a..819ef203 100644
--- a/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/main.yml
+++ b/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/main.yml
@@ -8,8 +8,18 @@
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-- name: Add SFC repos and inventory
- include: add-sfc-repos-and-inventory.yml
+- name: Add SFC repos and inventory for Pike
+ include: add-sfc-repos-and-inventory-pike.yml
+ when: OPENSTACK_OSA_VERSION == "stable/pike"
-- name: Copy the OSA not-yet-upstreamed files
- include: copy-OSA-files.yml
+- name: Add SFC repos and inventory for master
+ include: add-sfc-repos-and-inventory-master.yml
+ when: OPENSTACK_OSA_VERSION != "stable/pike"
+
+- name: Copy the OSA not-yet-upstreamed files for Pike
+ include: copy-OSA-files-pike.yml
+ when: OPENSTACK_OSA_VERSION == "stable/pike"
+
+- name: Copy the OSA not-yet-upstreamed files for master
+ include: copy-OSA-files-master.yml
+ when: OPENSTACK_OSA_VERSION != "stable/pike"