summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xci/playbooks/get-opnfv-scenario-requirements.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/xci/playbooks/get-opnfv-scenario-requirements.yml b/xci/playbooks/get-opnfv-scenario-requirements.yml
index 944bf53c..037c6ea9 100644
--- a/xci/playbooks/get-opnfv-scenario-requirements.yml
+++ b/xci/playbooks/get-opnfv-scenario-requirements.yml
@@ -85,7 +85,7 @@
- name: Determine if selected {{ DEPLOY_SCENARIO }} scenario can be deployed
set_fact:
- deploy_scenario_on_flavor: XCI_FLAVOR in item.flavors
+ deploy_scenario_on_flavor: "{{ (XCI_FLAVOR in item.flavors) | ternary(True, False) }}"
when: DEPLOY_SCENARIO == item.scenario
with_items: "{{ scenarios }}"
loop_control: