From aadc493bf402476ae10f526403591f9f21d8e715 Mon Sep 17 00:00:00 2001 From: Narinder Gupta Date: Mon, 22 Jan 2018 18:36:29 -0600 Subject: modified to enable the DVR on the deployment by default. Change-Id: Iea20b4071a6d8f67db4c190e509ef71f0a70358a Signed-off-by: Narinder Gupta --- ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'ci/config_tpl/juju2/bundle_tpl/neutron-gateway.yaml') 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 #} -- cgit 1.2.3-korg