Execution
Date
14 Dec 2025 10:21:40 +0000
Duration
00:43:55.98
Controller
aio1.openstack.local
User
root
Versions
Ansible
2.18.6
ara
1.7.4 / 1.7.4
Python
3.13.5
Summary
13
Hosts
2438
Tasks
2413
Results
107
Plays
511
Files
0
Records
File: /home/zuul/src/opendev.org/openstack/openstack-ansible-os_horizon/tasks/horizon_post_install.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | --- # Copyright 2014, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - name: Configure source-installed dashboards ansible.builtin.include_tasks: horizon_post_install_source.yml when: horizon_install_method == 'source' # NOTE(noonedeadpunk): change of ownership is required for collectstatic and compilemessages - name: Ensure horizon dirs are accessible by user ansible.builtin.file: path: "{{ item.path }}" state: directory owner: "{{ horizon_system_user_name }}" group: "{{ horizon_system_group_name }}" mode: "{{ item.mode | default(omit) }}" recurse: "{{ item.recurse | default(True) }}" with_items: - { path: "{{ horizon_lib_dir }}", fixup: true } - { path: "/etc/openstack-dashboard", fixup: "{{ (ansible_facts['os_family'] | lower) == 'redhat' }}" } when: item.fixup # TODO(hwoarang): See if we can use local_settings.py from the distribution packages # when horizon_install_method == 'distro' - name: Setup Horizon config(s) ansible.builtin.template: src: "{{ item.src }}" dest: "{{ item.dest }}" owner: "{{ item.owner | default(horizon_system_user_name) }}" group: "{{ horizon_system_group_name }}" mode: "{{ item.mode }}" with_items: - src: "horizon_local_settings.py.j2" dest: "/etc/horizon/local_settings.py" mode: "0640" - src: "horizon-manage.py.j2" dest: "{{ horizon_bin }}/horizon-manage.py" mode: "0755" - src: "80_admin_default_panel.py.j2" dest: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_80_admin_default_panel.py" mode: "0755" notify: Restart wsgi process - name: Place policy overrides openstack.config_template.config_template: content: "{{ item.value }}" dest: "{{ horizon_lib_dir }}/openstack_dashboard/conf/{{ item.key }}_policy.yaml" owner: root group: "{{ horizon_system_group_name }}" mode: "0644" config_type: yaml with_dict: "{{ horizon_policy_overrides }}" - name: Uploading horizon custom files ansible.builtin.copy: src: "{{ item.value.src }}" dest: "{{ horizon_lib_dir }}/openstack_dashboard/static/dashboard/{{ item.value.dest }}" mode: "0644" with_dict: "{{ horizon_custom_uploads | default({}) }}" - name: Create horizon links ansible.builtin.file: src: "{{ item.src }}" dest: "{{ item.dest }}" owner: "{{ horizon_system_user_name }}" group: "{{ horizon_system_group_name }}" state: "link" force: true with_items: - { src: "/etc/horizon/local_settings.py", dest: "{{ horizon_lib_dir }}/openstack_dashboard/local/local_settings.py" } - name: Create customization module directory ansible.builtin.file: path: "{{ horizon_lib_dir }}/horizon_customization" state: directory owner: "{{ horizon_system_user_name }}" group: "{{ horizon_system_group_name }}" mode: "0755" when: horizon_customization_module is defined - name: Drop horizon customization module ansible.builtin.template: src: "{{ horizon_customization_module }}" dest: "{{ horizon_lib_dir }}/horizon_customization/__init__.py" owner: "{{ horizon_system_user_name }}" group: "{{ horizon_system_group_name }}" mode: "0644" notify: Restart wsgi process when: horizon_customization_module is defined - name: Creating horizon custom theme path ansible.builtin.file: path: "{{ horizon_lib_dir }}/openstack_dashboard/{{ item.value.theme_path }}/" state: directory owner: "{{ horizon_system_user_name }}" group: "{{ horizon_system_group_name }}" mode: "0755" with_dict: "{{ horizon_custom_themes }}" - name: Drop horizon custom themes ansible.builtin.unarchive: src: "{{ item.value.theme_src_archive }}" dest: "{{ horizon_lib_dir }}/openstack_dashboard/{{ item.value.theme_path }}/" owner: "{{ horizon_system_user_name }}" group: "{{ horizon_system_group_name }}" with_dict: "{{ horizon_custom_themes }}" when: item.value.theme_src_archive is defined notify: Restart wsgi process - name: Collect static files ansible.builtin.command: "{{ horizon_manage }} collectstatic --noinput" become: true become_user: "{{ horizon_system_user_name }}" changed_when: false notify: Restart wsgi process - name: Compress static files ansible.builtin.command: "{{ horizon_manage }} compress --force" become: true become_user: "{{ horizon_system_user_name }}" changed_when: false notify: Restart wsgi process - name: Register DB session cleanup cron ansible.builtin.cron: name: "Clear out expired sessions" minute: "{{ 58 | random(seed=inventory_hostname, start=2) }}" hour: "21" job: "{{ horizon_manage }} clearsessions" user: "{{ horizon_system_user_name }}" state: present when: inventory_hostname == ansible_play_hosts[0] |