Skip to content
Snippets Groups Projects
Commit 0346dc12 authored by Dincer Celik's avatar Dincer Celik
Browse files

Fixes missing boolean for Neutron FWaaS

The missing boolean breaks Neutron FWaaS deployment.

Change-Id: I169246a6ce8b15af76fd84b32029437016bd3c42
Closes-Bug: #1847562
parent 7bde217a
No related branches found
No related tags found
No related merge requests found
...@@ -358,7 +358,7 @@ neutron_rolling_upgrade_services: ["neutron", "neutron-fwaas", "neutron-vpnaas"] ...@@ -358,7 +358,7 @@ neutron_rolling_upgrade_services: ["neutron", "neutron-fwaas", "neutron-vpnaas"]
#################### ####################
service_plugins: service_plugins:
- name: "firewall_v2" - name: "firewall_v2"
enabled: "{{ enable_neutron_fwaas }}" enabled: "{{ enable_neutron_fwaas | bool }}"
- name: "flow_classifier" - name: "flow_classifier"
enabled: "{{ enable_neutron_sfc | bool }}" enabled: "{{ enable_neutron_sfc | bool }}"
- name: "metering" - name: "metering"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment