blob: 6b7d19a1d28f680e1d3c8770e7b4535ee34a99ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
neutron-gateway:
charm: "local:{{ ubuntu.release }}/neutron-gateway"
options:
{% if opnfv.spaces_dict.data is defined %}
os-data-network: {{ opnfv.spaces_dict.data.cidr }}
{% else %}
#os-data-network: {{ opnfv.spaces_dict.data.cidr }}
{% endif %}
{% if opnfv.ext_port is defined %}
ext-port: {{ opnfv.ext_port }}
{% endif %}
{% if os.network.controller == 'odl' %}
plugin: ovs-odl
{% elif os.network.controller == 'onos' %}
plugin: onos
{% endif %}
instance-mtu: 1400
to:
- "nodes=0"
{# Empty block to avoid bad block trim #}
|