35b165c5f1
- Heat - Ironic - Magum - Manila - Mistral This will copy only yaml or json policy file if they exist. Change-Id: I1ab71e2758dc99dd6654d433ece79600f0c44ce8 Implements: blueprint support-custom-policy-yaml Co-authored-By: Duong Ha-Quang <duonghq@vn.fujitsu.com>
25 lines
686 B
Django/Jinja
25 lines
686 B
Django/Jinja
{
|
|
"command": "ironic-api",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/ironic.conf",
|
|
"dest": "/etc/ironic/ironic.conf",
|
|
"owner": "ironic",
|
|
"perm": "0600"
|
|
}{% if ironic_policy_file is defined %},
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ ironic_policy_file }}",
|
|
"dest": "/etc/ironic/{{ ironic_policy_file }}",
|
|
"owner": "ironic",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/ironic",
|
|
"owner": "ironic:ironic",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|