db4e25836d
This PS adds deployment of mistral-event-engine service within mistral role. Change-Id: If187e1a49a321d1e85fb3cfff2ea037e567b30dc
31 lines
984 B
Django/Jinja
31 lines
984 B
Django/Jinja
{
|
|
"command": "mistral-server --server event-engine --config-file /etc/mistral/mistral.conf",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/mistral.conf",
|
|
"dest": "/etc/mistral/mistral.conf",
|
|
"owner": "mistral",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/event_definitions.yaml",
|
|
"dest": "/etc/mistral/event_definitions.yaml",
|
|
"owner": "mistral",
|
|
"perm": "0600"
|
|
}{% if mistral_policy_file is defined %},
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ mistral_policy_file }}",
|
|
"dest": "/etc/mistral/{{ mistral_policy_file }}",
|
|
"owner": "mistral",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/mistral",
|
|
"owner": "mistral:mistral",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|