1c7ca29664
Depends-On: I561504160e5548c54d1af31821c3366ab34cf0ec Change-Id: I15e5c0e0a956ee181873cf002229532a15ff959d Co-Authored-By: jacky06 <zhang.min@99cloud.net>
52 lines
2.2 KiB
Django/Jinja
52 lines
2.2 KiB
Django/Jinja
{
|
|
"command": "neutron-server --config-file /etc/neutron/neutron.conf {% if neutron_plugin_agent in ['openvswitch', 'linuxbridge', 'ovn'] %} --config-file /etc/neutron/plugins/ml2/ml2_conf.ini --config-file /etc/neutron/neutron_vpnaas.conf {% elif neutron_plugin_agent in ['vmware_nsxv', 'vmware_nsxv3', 'vmware_dvs'] %} --config-file /etc/neutron/plugins/vmware/nsx.ini {% endif %}",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/neutron.conf",
|
|
"dest": "/etc/neutron/neutron.conf",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/neutron_vpnaas.conf",
|
|
"dest": "/etc/neutron/neutron_vpnaas.conf",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},
|
|
{% if neutron_policy_file is defined %}{
|
|
"source": "{{ container_config_directory }}/{{ neutron_policy_file }}",
|
|
"dest": "/etc/neutron/{{ neutron_policy_file }}",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},{% endif %}
|
|
{% if neutron_plugin_agent in ['vmware_nsxv', 'vmware_nsxv3', 'vmware_dvs'] -%}
|
|
{
|
|
"source": "{{ container_config_directory }}/nsx.ini",
|
|
"dest": "/etc/neutron/plugins/vmware/nsx.ini",
|
|
"owner": "neutron",
|
|
"optional": {{ (neutron_plugin_agent not in ['vmware_nsxv', 'vmware_nsxv3', 'vmware_dvs']) | string | lower }},
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
{% if check_extra_ml2_plugins is defined and check_extra_ml2_plugins.matched > 0 %}{% for plugin in check_extra_ml2_plugins.files %}
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ plugin.path | basename }}",
|
|
"dest": "/etc/neutron/plugins/ml2/{{ plugin.path | basename }}",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},{% endfor %}{% endif %}
|
|
{
|
|
"source": "{{ container_config_directory }}/ml2_conf.ini",
|
|
"dest": "/etc/neutron/plugins/ml2/ml2_conf.ini",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/neutron",
|
|
"owner": "neutron:neutron",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|