6b99f21341
- Barbican - Ceilometer - Cloudkitty - Congress - Designate This will copy only yaml or json policy file if they exist. Change-Id: Iaa19f64073d8bdee948bc2de58e095ca72afc092 Implements: blueprint support-custom-policy-yaml Co-authored-By: Duong Ha-Quang <duonghq@vn.fujitsu.com>
24 lines
686 B
Django/Jinja
24 lines
686 B
Django/Jinja
{
|
|
"command": "barbican-worker",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/barbican.conf",
|
|
"dest": "/etc/barbican/barbican.conf",
|
|
"owner": "barbican",
|
|
"perm": "0600"
|
|
}{% if barbican_policy_file is defined %},
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ barbican_policy_file }}",
|
|
"dest": "/etc/barbican/{{ barbican_policy_file }}",
|
|
"owner": "barbican",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/barbican",
|
|
"owner": "barbican:barbican"
|
|
}
|
|
]
|
|
}
|