b567154395
it was confused to customize opts in trove-conductor.conf or trove-taskmanager.conf now. if we want to customize a opts,The operator needs to know which service is using the configuration opts. actually trove uses trove.conf is enough for all services this change combines all trove config files. Change-Id: I5a630109e3c4b59bff216146a3ed64c6d47e247f
30 lines
834 B
Django/Jinja
30 lines
834 B
Django/Jinja
{
|
|
"command": "trove-conductor --config-file=/etc/trove/trove.conf",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/trove.conf",
|
|
"dest": "/etc/trove/trove.conf",
|
|
"owner": "trove",
|
|
"perm": "0600"
|
|
}{% if trove_policy_file is defined %},
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ trove_policy_file }}",
|
|
"dest": "/etc/trove/{{ trove_policy_file }}",
|
|
"owner": "trove",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/trove",
|
|
"owner": "trove:trove",
|
|
"recurse": true
|
|
},
|
|
{
|
|
"path": "/var/lib/trove",
|
|
"owner": "trove:trove",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|