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_tempest/tasks/tempest_resources.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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | --- # 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. # We set the python interpreter to the ansible runtime venv if # the delegation is to localhost so that we get access to the # appropriate python libraries in that venv. If the delegation # is to another host, we assume that it is accessible by the # system python instead. - name: Ensure that all required variables are set when tempest_public_net_create is enabled ansible.builtin.assert: that: - tempest_public_net_name is defined - tempest_public_net_provider_type is defined - tempest_public_net_physical_name is defined - tempest_public_subnet_name is defined - tempest_public_subnet_cidr is defined - tempest_public_net_physical_name is defined - tempest_public_router_external is defined when: - tempest_public_net_create - name: Ensure that all required variables are set when tempest_public_net_create is disabled ansible.builtin.assert: that: - tempest_neutron_public_network_id is defined when: - not tempest_public_net_create - name: Ensure that all required variables are set when tempest_private_net_create is enabled ansible.builtin.assert: that: - tempest_private_net_name is defined - tempest_private_subnet_name is defined - tempest_private_subnet_cidr is defined - tempest_private_net_provider_type is defined when: - tempest_private_net_create - name: Ensure that all required variables are set when tempest_router_create is enabled ansible.builtin.assert: that: - (tempest_public_net_create or tempest_neutron_public_network_id is defined) - tempest_private_net_create when: - tempest_router_create - name: Ensure that all required variables are set when tempest_images_create is disabled ansible.builtin.assert: that: - tempest_glance_image_id_1 is defined - tempest_glance_image_id_2 is defined when: - not tempest_images_create - name: Ensure that all required variables are set when tempest_flavors_create is enabled ansible.builtin.assert: that: - "tempest_flavors | length > 0" when: - tempest_flavors_create - name: Ensure that all required variables are set when tempest_flavors_create is disabled ansible.builtin.assert: that: - tempest_nova_flavor_id_1 is defined when: - not tempest_flavors_create - name: Ensures you have at least one image to upload ansible.builtin.assert: that: - "tempest_images | length > 0" when: - tempest_service_available_glance | bool - tempest_images_create | bool - name: Creating OpenStack Projects ansible.builtin.include_role: name: openstack.osa.openstack_resources vars: openstack_resources_identity: domains: - name: "{{ tempest_domain_name }}" projects: |- {% set projects = [] %} {% for project in tempest_projects %} {% set _ = projects.append({ 'name': project, 'description': project ~ ' project', 'domain': tempest_domain_name }) %} {% endfor %} {{ projects }} when: - tempest_projects_create | bool - name: Get tempest project data delegate_to: "{{ tempest_service_setup_host }}" run_once: true vars: ansible_python_interpreter: "{{ tempest_service_setup_host_python_interpreter }}" block: - name: Get tempest project UUID openstack.cloud.project_info: cloud: "{{ tempest_cloud_name }}" interface: "{{ tempest_interface_name }}" domain: "{{ tempest_domain_name }}" name: "{{ project }}" loop: "{{ tempest_projects }}" loop_control: loop_var: project label: "{{ project }}" register: tempest_project_details - name: Get demo project ID ansible.builtin.set_fact: keystone_demo_tenant_id: >- {{ (tempest_project_details.results | map(attribute='projects') | list | flatten | map(attribute='id') | list)[0] }} - name: Creating OpenStack resources ansible.builtin.include_role: name: openstack.osa.openstack_resources vars: _private_network: name: "{{ tempest_private_net_name }}" network_type: "{{ tempest_private_net_provider_type }}" physical_network: "{{ tempest_private_net_physical_name | default(omit) }}" segmentation_id: "{{ tempest_private_net_seg_id | default(omit) }}" mtu: "{{ tempest_private_net_mtu | default(omit) }}" project: "{{ keystone_demo_tenant_id }}" subnets: - name: "{{ tempest_private_subnet_name }}" cidr: "{{ tempest_private_subnet_cidr }}" dhcp: false _public_network: name: "{{ tempest_public_net_name }}" network_type: "{{ tempest_public_net_provider_type }}" physical_network: "{{ tempest_public_net_physical_name | default(omit) }}" segmentation_id: "{{ tempest_public_net_seg_id | default(omit) }}" external: "{{ tempest_public_router_external }}" project: "{{ keystone_demo_tenant_id }}" shared: "{{ tempest_public_net_shared }}" subnets: - name: "{{ tempest_public_subnet_name }}" cidr: "{{ tempest_public_subnet_cidr }}" allocation_start: "{{ tempest_public_subnet_allocation_pools.split('-')[0] | default(omit) }}" allocation_end: "{{ tempest_public_subnet_allocation_pools.split('-')[1] | default(omit) }}" gateway: "{{ tempest_public_subnet_gateway_ip | default(omit) }}" _router: name: router network: "{{ tempest_public_net_name }}" interfaces: - "{{ tempest_private_subnet_name }}" project: "{{ keystone_demo_tenant_id }}" _compute_resources: flavors: - specs: "{{ tempest_flavors }}" _image_resources: images: "{{ tempest_images | default([]) }}" _network_resources: |- {% set resources = {'networks': [], 'routers': [], 'security_groups': []} %} {% if tempest_private_net_create | bool %} {% set _ = resources['networks'].append(_private_network) %} {% endif %} {% if tempest_public_net_create | bool %} {% set _ = resources['networks'].append(_public_network) %} {% endif %} {% if tempest_router_create | bool %} {% set _ = resources['routers'].append(_router) %} {% endif %} {{ resources }} openstack_resources_setup_host: "{{ tempest_service_setup_host }}" openstack_resources_python_interpreter: "{{ tempest_service_setup_host_python_interpreter }}" openstack_resources_cloud_name: "{{ tempest_cloud_name }}" openstack_resources_interface: "{{ tempest_interface_name }}" openstack_resources_network: "{{ tempest_service_available_neutron | ternary(_network_resources, {}) }}" openstack_resources_image: "{{ (tempest_service_available_glance and tempest_images_create) | ternary(_image_resources, {}) }}" openstack_resources_compute: "{{ (tempest_service_available_nova and tempest_flavors_create) | ternary(_compute_resources, {}) }}" - name: Get tempest resources data delegate_to: "{{ tempest_service_setup_host }}" run_once: true vars: ansible_python_interpreter: "{{ tempest_service_setup_host_python_interpreter }}" block: - name: Get tempest images openstack.cloud.image_info: cloud: "{{ tempest_cloud_name }}" interface: "{{ tempest_interface_name }}" filters: "name": "{{ image['name'] }}" "tags": - "managed_by_tempest" loop: "{{ tempest_images }}" loop_control: loop_var: image label: "{{ image['name'] }}" register: tempest_image_details when: - tempest_service_available_glance | bool - tempest_images_create | bool - name: Get tempest public network UUID openstack.cloud.networks_info: cloud: "{{ tempest_cloud_name }}" interface: "{{ tempest_interface_name }}" name: "{{ tempest_public_net_name }}" filters: project_id: "{{ keystone_demo_tenant_id }}" register: tempest_public_network_details when: - tempest_service_available_neutron | bool - tempest_public_net_create | bool - name: Get tempest router details openstack.cloud.routers_info: cloud: "{{ tempest_cloud_name }}" interface: "{{ tempest_interface_name }}" name: router filters: project_id: "{{ keystone_demo_tenant_id }}" when: - tempest_service_available_neutron | bool - tempest_router_create | bool # These facts are used in tempest.conf.j2; we set an empty string if it is not # set above to ensure the template will parse correctly. - name: Store first tempest image id vars: res: "{{ tempest_image_details['results'] | map(attribute='images') | flatten }}" ansible.builtin.set_fact: tempest_glance_image_id_1: "{{ res[0]['id'] | default('') }}" tempest_glance_image_id_2: "{{ res[-1]['id'] | default('') }}" when: - tempest_service_available_glance | bool - tempest_images_create | bool - name: Store tempest flavor id ansible.builtin.set_fact: tempest_nova_flavor_id_1: "{{ tempest_service_available_nova | ternary(tempest_flavors[0]['id'], '1') }}" tempest_nova_flavor_id_2: "{{ tempest_service_available_nova | ternary(tempest_flavors[-1]['id'], '2') }}" when: - tempest_service_available_nova | bool - tempest_flavors_create | bool - name: Store neutron public network id ansible.builtin.set_fact: tempest_neutron_public_network_id: "{{ tempest_service_available_neutron | ternary(tempest_public_network_details['networks'][0]['id'], '') }}" when: - tempest_service_available_neutron | bool - tempest_public_net_create | bool - name: Get router admin state and ip address ansible.builtin.set_fact: router_admin_state: "{{ _add_router['routers'][0]['is_admin_state_up'] }}" router_ip: "{{ _add_router['routers'][0]['external_gateway_info']['external_fixed_ips'][0]['ip_address'] }}" when: - tempest_service_available_neutron | bool - tempest_router_create | bool - name: Ping router ip address ansible.builtin.shell: | set -e ping -c2 "{{ router_ip }}" register: _ping_router changed_when: false until: _ping_router is success retries: 5 delay: 10 when: - tempest_router_create | bool - tempest_service_available_neutron | bool - router_admin_state | bool - tempest_network_ping_gateway | bool - tempest_public_net_provider_type not in ['local'] |