blob: 2148fd79d1a3b56a8bb2819e6d5fe266a9325ecb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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 os.network.controller == 'nosdn' %}
{% if opnfv.ext_port is defined %}
{% if opnfv.data_port is defined %}
bridge-mappings: physnet1:br-data external:br-ex
data-port: br-data:{{ opnfv.data_port }} br-ex:{{ opnfv.ext_port }}
{% else %}
bridge-mappings: external:br-ex
data-port: br-ex:{{ opnfv.ext_port }}
{% endif %}
{% endif %}
{% else %}
ext-port: {{ opnfv.ext_port }}
{% endif %}
{% if os.network.controller == 'odl' %}
plugin: ovs-odl
{% elif os.network.controller == 'onos' %}
plugin: onos
{% if os.network.sfc %}
profile: onos-sfc
{% endif %}
{% endif %}
instance-mtu: 1400
to:
- "nodes=0"
{# Empty block to avoid bad block trim #}
|