7f2d203354
Custom themes support for horizon deployment. - horizon role task added for copying theme files - added theme copying into the container in templates - docs and reno updated Change-Id: If9982c8e18be31772cb031ef72b7eebd4d768be5 Co-Authored-By: Jakub Darmach <jakub@stackhpc.com> Depends-On: https://review.opendev.org/c/openstack/kayobe/+/824565 Depends-On: https://review.opendev.org/c/openstack/kolla/+/826672
53 lines
2.0 KiB
Django/Jinja
53 lines
2.0 KiB
Django/Jinja
{% set apache_cmd = 'apache2' if kolla_base_distro in ['ubuntu', 'debian'] else 'httpd' %}
|
|
{% set apache_dir = 'apache2/conf-enabled' if kolla_base_distro in ['ubuntu', 'debian'] else 'httpd/conf.d' %}
|
|
{% set apache_file = '000-default.conf' if kolla_base_distro in ['ubuntu', 'debian'] else 'horizon.conf' %}
|
|
{
|
|
"command": "/usr/sbin/{{ apache_cmd }} -DFOREGROUND",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/horizon.conf",
|
|
"dest": "/etc/{{ apache_dir }}/{{ apache_file }}",
|
|
"owner": "horizon",
|
|
"perm": "0600"
|
|
},
|
|
{% for path in custom_policy %}
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ path | basename }}",
|
|
"dest": "/etc/openstack-dashboard/{{ path | basename }}",
|
|
"owner": "horizon",
|
|
"perm": "0600"
|
|
},
|
|
{% endfor %}
|
|
{
|
|
"source": "{{ container_config_directory }}/local_settings",
|
|
"dest": "/etc/openstack-dashboard/local_settings",
|
|
"owner": "horizon",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/custom_local_settings",
|
|
"dest": "/etc/openstack-dashboard/custom_local_settings",
|
|
"owner": "horizon",
|
|
"perm": "0600"
|
|
}{% if horizon_enable_tls_backend | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/horizon-cert.pem",
|
|
"dest": "/etc/horizon/certs/horizon-cert.pem",
|
|
"owner": "horizon",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/horizon-key.pem",
|
|
"dest": "/etc/horizon/certs/horizon-key.pem",
|
|
"owner": "horizon",
|
|
"perm": "0600"
|
|
}{% endif %}{% if horizon_custom_themes | length > 0 %},
|
|
{
|
|
"source": "{{ container_config_directory}}/themes",
|
|
"dest": "/etc/openstack-dashboard/themes",
|
|
"owner": "horizon",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
]
|
|
}
|