865736c21d
fwaas is in pending create state when I attach it to a router. This patch fix this. Change-Id: I18b56ed3698e22a02a8718b39360fde76c12428b Closes-Bug: #1689703
57 lines
2.1 KiB
Django/Jinja
57 lines
2.1 KiB
Django/Jinja
{
|
|
"command": "neutron-server --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/ml2_conf.ini --config-file /etc/neutron/neutron_lbaas.conf --config-file /etc/neutron/neutron_vpnaas.conf --config-file /etc/neutron/fwaas_driver.ini {% if neutron_plugin_agent == 'vmware_nsxv' %} --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 }}/fwaas_driver.ini",
|
|
"dest": "/etc/neutron/fwaas_driver.ini",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/neutron_lbaas.conf",
|
|
"dest": "/etc/neutron/neutron_lbaas.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 }}/ml2_conf.ini",
|
|
"dest": "/etc/neutron/plugins/ml2/ml2_conf.ini",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/policy.json",
|
|
"dest": "/etc/neutron/policy.json",
|
|
"owner": "neutron",
|
|
"perm": "0600",
|
|
"optional": true
|
|
}{% if neutron_plugin_agent == 'vmware_nsxv' -%},
|
|
{
|
|
"source": "{{ container_config_directory }}/nsx.ini",
|
|
"dest": "/etc/neutron/plugins/vmware/nsx.ini",
|
|
"owner": "neutron",
|
|
"perm": "0600"
|
|
}
|
|
{% endif -%}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/neutron",
|
|
"owner": "neutron:neutron",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|