9fe70f45f3
As neutron-vpnaas-agent has been loaded just inside of the existing l3 agent rather than requiring operators to run a completely different binary with a subclass of the existing L3 agent[1]. We need restructure this role to fit with this new feature. [1] https://review.openstack.org/488247 Depends-On: I47cd8ba5a14da3c76d5b1eb0b4c0cf0c729eb2ff Change-Id: Id690a652bc9facf1c3e39358f548ab7ddd967d80 Implements: blueprint restructure-neutron-vpnaas Closes-Bug: #1731498
36 lines
1.1 KiB
Django/Jinja
36 lines
1.1 KiB
Django/Jinja
#jinja2: trim_blocks: False
|
|
{% set vpn_device_driver = 'neutron_vpnaas.services.vpn.device_drivers.strongswan_ipsec.StrongSwanDriver' if kolla_base_distro in ['ubuntu', 'debian'] else 'neutron_vpnaas.services.vpn.device_drivers.libreswan_ipsec.LibreSwanDriver'%}
|
|
[DEFAULT]
|
|
{% if enable_neutron_dvr | bool %}
|
|
{% if inventory_hostname in groups['network'] %}
|
|
agent_mode = dvr_snat
|
|
{% elif inventory_hostname in groups['external-compute'] %}
|
|
agent_mode = dvr
|
|
{% elif inventory_hostname in groups['inner-compute'] %}
|
|
agent_mode = dvr_no_external
|
|
{% elif inventory_hostname in groups['compute'] %}
|
|
agent_mode = {{ neutron_compute_dvr_mode }}
|
|
{% endif %}
|
|
{% else %}
|
|
agent_mode = legacy
|
|
{% endif %}
|
|
{% if enable_neutron_agent_ha | bool %}
|
|
ha_vrrp_health_check_interval = 5
|
|
{% endif %}
|
|
[agent]
|
|
{% if neutron_l3_agent_extensions %}
|
|
extensions = "{{ neutron_l3_agent_extensions|map(attribute='name')|join(',') }}"
|
|
{% endif %}
|
|
|
|
{% if enable_neutron_vpnaas | bool %}
|
|
[ipsec]
|
|
enable_detailed_logging = {{ neutron_logging_debug }}
|
|
|
|
[vpnagent]
|
|
vpn_device_driver = {{ vpn_device_driver }}
|
|
{% endif %}
|
|
|
|
[ovs]
|
|
ovsdb_interface = native
|
|
ovsdb_connection = tcp:127.0.0.1:{{ ovsdb_port }}
|