9ea1b06bfa
Service_providers config group is already configured in the neutron_vpnaas.conf. So, we only need to load the neutron_vpnaas.conf configuration file when the neutron_vpnaas_agent container starts, without having to duplicate the configuration. Change-Id: I7b78831325db4bbb263b2cc174e848ea7037ad0a
61 lines
1.8 KiB
Django/Jinja
61 lines
1.8 KiB
Django/Jinja
{
|
|
"command": "/usr/local/bin/neutron-vpnaas-agent-wrapper.sh",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/neutron-vpnaas-agent-wrapper.sh",
|
|
"dest": "/usr/local/bin/neutron-vpnaas-agent-wrapper.sh",
|
|
"owner": "root",
|
|
"perm": "0755"
|
|
},
|
|
{
|
|
"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"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/fwaas_driver.ini",
|
|
"dest": "/etc/neutron/fwaas_driver.ini",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/l3_agent.ini",
|
|
"dest": "/etc/neutron/l3_agent.ini",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/vpnaas_agent.ini",
|
|
"dest": "/etc/neutron/vpnaas_agent.ini",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/policy.json",
|
|
"dest": "/etc/neutron/policy.json",
|
|
"owner": "neutron",
|
|
"perm": "0600",
|
|
"optional": true
|
|
}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/neutron",
|
|
"owner": "neutron:neutron",
|
|
"recurse": true
|
|
},
|
|
{
|
|
"path": "/var/lib/neutron/kolla",
|
|
"owner": "neutron:neutron",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|