summaryrefslogtreecommitdiffstats
path: root/ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2018-01-23 00:37:41 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-23 00:37:41 +0000
commit0890aa54bbc3bc8727757961b2167bce8a542081 (patch)
tree957c48bd18c93d7beea64c94c80a2eba451d47df /ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml
parent0aa248898dee5addd21d391dedfcf143501e78ca (diff)
parentaadc493bf402476ae10f526403591f9f21d8e715 (diff)
Merge "modified to enable the DVR on the deployment by default."
Diffstat (limited to 'ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml')
-rw-r--r--ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml11
1 files changed, 9 insertions, 2 deletions
diff --git a/ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml b/ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml
index eedac793..041c6ae5 100644
--- a/ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml
+++ b/ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml
@@ -1,6 +1,10 @@
neutron-gateway:
charm: "./{{ ubuntu.release }}/neutron-gateway"
- num_units: 1
+{% if os.ha.mode == 'ha' %}
+ num_units: 2
+{% else %}
+ num_units: 1
+{% endif %}
{% if os.service.bindings %}
bindings:
"": *oam-space
@@ -27,7 +31,10 @@
bridge-mappings: physnet1:br-data
data-port: *data-port
{% endif %}
- instance-mtu: 1400
+ instance-mtu: 1300
to:
- "nodes/0"
+{% if os.ha.mode == 'ha' %}
+ - "nodes/1"
+{% endif %}
{# Empty block to avoid bad block trim #}