Execution
Date
08 Dec 2025 13:57:07 +0000
Duration
00:24:46.17
Controller
aio1.openstack.local
User
root
Versions
Ansible
2.18.6
ara
1.7.4 / 1.7.4
Python
3.12.11
Summary
12
Hosts
1505
Tasks
1497
Results
32
Plays
487
Files
0
Records
File: /home/zuul/src/opendev.org/openstack/openstack-ansible-os_nova/tasks/nova_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 | --- # 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. # NOTE(cloudnull) this task is not in dict formation because it is # dynamically loading facts from the nova_virt_types based on the # nova_virt_type setting. - name: Set nova config facts ansible.builtin.set_fact: "{{ item.key }}": "{{ item.value }}" # noqa: var-naming[no-jinja] with_dict: "{{ nova_virt_types[nova_virt_type] }}" when: - item.key not in hostvars[inventory_hostname] or item.key is undefined tags: - nova-config - nova-post-install - name: Generate nova config openstack.config_template.config_template: src: "{{ item.src }}" dest: "{{ item.dest }}" owner: "root" group: "{{ item.group | default(nova_system_group_name) }}" mode: "0640" config_overrides: "{{ item.config_overrides }}" config_type: "{{ item.config_type }}" yml_multilines: "{{ item.yml_multilines | default(omit) }}" with_items: - src: "nova.conf.j2" dest: "{{ nova_conf_version_dir }}/nova.conf" config_overrides: "{{ nova_nova_conf_overrides }}" config_type: "ini" - src: "vendor_data.json.j2" dest: "{{ nova_conf_version_dir }}/vendor_data.json" config_overrides: "{{ nova_vendor_data_overrides }}" config_type: "json" yml_multilines: true notify: - Restart nova services - Restart uwsgi services tags: - nova-config - nova-post-install - name: Implement policy.yaml file openstack.config_template.config_template: content: "{{ (nova_policy_overrides | length > 0) | ternary(nova_policy_overrides, '---') }}" dest: "{{ nova_conf_version_dir }}/policy.yaml" owner: "root" group: "{{ nova_system_group_name }}" mode: "0640" config_type: yaml when: - nova_services['nova-api-os-compute']['group'] in group_names tags: - nova-config - nova-policy-override - name: Implement compute host provider.yaml if there are overrides configured openstack.config_template.config_template: content: "{{ item.content }}" dest: "{{ nova_conf_version_dir }}/provider_config/{{ item.name }}.yaml" owner: "root" group: "{{ nova_system_group_name }}" mode: "0640" config_type: yaml with_items: - "{{ nova_provider_overrides }}" when: - nova_services['nova-compute']['group'] in group_names tags: - nova-config - nova-provider-override # NOTE(cloudnull): This is using "cp" instead of copy with a remote_source # because we only want to copy the original files once. and we # don't want to need multiple tasks. - name: Preserve original configuration file(s) ansible.builtin.command: "cp {{ item.target_f }} {{ item.target_f }}.original" args: creates: "{{ item.target_f }}.original" with_items: "{{ nova_core_files }}" - name: Fetch override files ansible.builtin.fetch: src: "{{ item.target_f }}" dest: "{{ item.tmp_f }}" flat: true changed_when: false run_once: true with_items: "{{ nova_core_files }}" - name: Copy common config openstack.config_template.config_template: src: "{{ item.tmp_f }}" dest: "{{ item.target_f }}" owner: "root" group: "{{ item.group | default(nova_system_group_name) }}" mode: "0640" config_overrides: "{{ item.config_overrides }}" config_type: "{{ item.config_type }}" with_items: "{{ nova_core_files }}" notify: - Restart nova services - Restart uwsgi services - name: Cleanup fetched temp files ansible.builtin.file: path: "{{ item.tmp_f }}" state: absent changed_when: false delegate_to: localhost run_once: true with_items: "{{ nova_core_files }}" - name: Remove nova-compute config ansible.builtin.file: path: /etc/nova/nova-compute.conf state: absent notify: - Restart nova services - Restart uwsgi services tags: - nova-config - nova-post-install |