27b577c484
Configure zun-api to use apache. Fix zun endpoint (tenant_id) causes a 404 error. Fix zun.conf options Change zun port, correct port is 9517 Zun compute need privileged and mount docker lib volume Change-Id: Id9455e7dde62e1994a3f6ae8f30d378e5cda4262 Closes-Bug: #1682165
34 lines
1.0 KiB
Django/Jinja
34 lines
1.0 KiB
Django/Jinja
{% set zun_cmd = 'apache2' if kolla_base_distro in ['ubuntu', 'debian'] else 'httpd' %}
|
|
{% set zun_dir = 'apache2/conf-enabled' if kolla_base_distro in ['ubuntu', 'debian'] else 'httpd/conf.d' %}
|
|
{
|
|
"command": "{{ zun_cmd }} -DFOREGROUND",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/zun.conf",
|
|
"dest": "/etc/zun/zun.conf",
|
|
"owner": "zun",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/wsgi-zun.conf",
|
|
"dest": "/etc/{{ zun_dir }}/wsgi-zun.conf",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/policy.json",
|
|
"dest": "/etc/zun/policy.json",
|
|
"owner": "zun",
|
|
"perm": "0600",
|
|
"optional": true
|
|
}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/log/kolla/zun",
|
|
"owner": "zun:zun",
|
|
"recurse": true
|
|
}
|
|
]
|
|
}
|