92deddca88
Change-Id: I22a995195a1d12bb759cba9777527c23475124f2
39 lines
1.4 KiB
Django/Jinja
39 lines
1.4 KiB
Django/Jinja
{
|
|
"command": "neutron-openvswitch-agent --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/openvswitch_agent.ini",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/neutron.conf",
|
|
"dest": "/etc/neutron/neutron.conf",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},
|
|
{% 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 %}
|
|
{% if neutron_policy_file is defined %}{
|
|
"source": "{{ container_config_directory }}/{{ neutron_policy_file }}",
|
|
"dest": "/etc/neutron/{{ neutron_policy_file }}",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},{% endif %}
|
|
{
|
|
"source": "{{ container_config_directory }}/openvswitch_agent.ini",
|
|
"dest": "/etc/neutron/plugins/ml2/openvswitch_agent.ini",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/neutron",
|
|
"owner": "neutron:neutron",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|