{"id":451,"sha1":"eb7798ead0fb166116aaa47d764f263ab49d8818","playbook":{"id":4,"items":{"plays":104,"tasks":1377,"results":1365,"hosts":2,"files":504,"records":0},"arguments":{"version":null,"verbosity":0,"private_key_file":null,"remote_user":null,"connection":"openstack.osa.ssh","timeout":null,"ssh_common_args":null,"sftp_extra_args":null,"scp_extra_args":null,"ssh_extra_args":null,"ask_pass":false,"connection_password_file":null,"force_handlers":true,"flush_cache":false,"become":false,"become_method":"sudo","become_user":null,"become_ask_pass":false,"become_password_file":null,"tags":["all"],"skip_tags":[],"check":false,"diff":false,"inventory":["/home/zuul/src/opendev.org/openstack/openstack-ansible/inventory/dynamic_inventory.py","/home/zuul/src/opendev.org/openstack/openstack-ansible/inventory/inventory.ini","/etc/openstack_deploy/inventory.ini"],"listhosts":false,"subset":null,"extra_vars":"Not saved by ARA as configured by 'ignored_arguments'","vault_ids":[],"ask_vault_pass":false,"vault_password_files":[],"forks":8,"module_path":null,"syntax":false,"listtasks":false,"listtags":false,"step":false,"start_at_task":null,"args":["setup-openstack.yml"]},"labels":[{"id":1,"name":"check:False"},{"id":2,"name":"tags:all"}],"started":"2025-12-08T13:39:52.478534Z","ended":"2025-12-08T14:14:54.510371Z","duration":"00:35:02.031837","name":null,"ansible_version":"2.18.6","client_version":"1.7.4","python_version":"3.12.3","server_version":"1.7.4","status":"failed","path":"/home/zuul/src/opendev.org/openstack/openstack-ansible/playbooks/setup-openstack.yml","controller":"aio1.openstack.local","user":"root"},"content":"---\n# Copyright 2017, Rackspace US, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nnova_conf_dir: /etc/nova\nnova_conf_version_dir: \"{{ (nova_install_method == 'distro') | ternary(nova_conf_dir, (nova_bin | dirname) + nova_conf_dir) }}\"\n\n_nova_is_first_play_host: >-\n  {{\n    (nova_services['nova-conductor']['group'] in group_names and\n      inventory_hostname == (groups[nova_services['nova-conductor']['group']] | select('in', ansible_play_hosts)) | first) | bool\n  }}\n\n_nova_oslomsg_rpc_vhost_conf: >-\n  {{\n    (nova_oslomsg_rpc_vhost is string) | ternary(\n      nova_oslomsg_rpc_vhost, nova_oslomsg_rpc_vhost | selectattr('state', 'eq', 'present') | map(attribute='name') | first\n    )\n  }}\n\n_nova_oslomsg_notify_vhost_conf: >-\n  {{\n    (nova_oslomsg_notify_vhost is string) | ternary(\n      nova_oslomsg_notify_vhost, nova_oslomsg_notify_vhost | selectattr('state', 'eq', 'present') | map(attribute='name') | first\n    )\n  }}\n\n_nova_ironic_used: |-\n  {% set _virt_types = [] %}\n  {% for hv in groups[nova_services['nova-compute']['group']] %}\n  {%   if 'nova_virt_type' in hostvars[hv] %}\n  {%     set _ = _virt_types.append(hostvars[hv]['nova_virt_type']) %}\n  {%   endif %}\n  {% endfor %}\n  {{ ('ironic' in _virt_types | unique) }}\n\nnova_venv_packages: |-\n  {%- set pkg_list = nova_pip_packages | union(nova_user_pip_packages) %}\n  {%- if nova_blazar_enabled | bool %}\n  {%-   if (nova_services['nova-scheduler']['group'] in group_names) %}\n  {%-     set _ = pkg_list.extend(nova_blazar_pip_packages) %}\n  {%-   endif %}\n  {%- endif %}\n  {%- if ('novnc' in nova_console_proxy_types) %}\n  {%-   set _ = pkg_list.extend(nova_novnc_pip_packages) %}\n  {%- endif %}\n  {%- if (nova_services['nova-compute']['group'] in group_names) %}\n  {%-   if nova_virt_type == 'ironic' %}\n  {%-     set _ = pkg_list.extend(nova_compute_ironic_pip_packages) %}\n  {%-   endif %}\n  {%- endif %}\n  {{- pkg_list | unique }}\n\n#\n# Compile a list of the services on a host based on whether\n# the host is in the host group and the service is enabled.\n#\nfiltered_nova_services: |-\n  {% set services = [] %}\n  {% for key, value in nova_services.items() %}\n  {%   if (value['group'] in group_names) and\n          (('condition' not in value) or\n           ('condition' in value and value['condition'])) and\n           not ('wsgi_app' in value and value['wsgi_app']) %}\n  {%     set _ = value.update(\n            {\n             'service_key': key,\n             'enabled': value['enabled'] | default(True),\n             'state': value['state'] | default('started')\n            }\n          )\n  %}\n  {%     set _ = services.append(value) %}\n  {%   endif %}\n  {% endfor %}\n  {{ services | sort(attribute='start_order') }}\n\nuwsgi_nova_services: |-\n  {% set services = {} %}\n  {% for key, value in nova_services.items() %}\n  {%   if (value['group'] in group_names) and\n         (('condition' not in value) or ('condition' in value and value['condition']))\n         and ('wsgi_app' in value and value['wsgi_app']) %}\n  {%     set _ = value.update(\n            {\n             'wsgi_venv': ((nova_install_method == 'source') | ternary(nova_bin | dirname, None)),\n             'uwsgi_uid': nova_system_user_name,\n             'uwsgi_guid': nova_system_group_name,\n             'uwsgi_processes': nova_wsgi_processes,\n             'uwsgi_threads': nova_wsgi_threads\n           }\n         ) %}\n  {%     set _ = services.update({key: value}) %}\n  {%   endif %}\n  {% endfor %}\n  {{ services }}\n\n# Define all Nova mountpoints when using NFS. If defined\n# the corresponding directory will only be created by the\n# mount point task.\nnova_mount_points: |-\n  {% set mps = [] %}\n  {% for mp in nova_nfs_client %}\n  {%   set _ = mps.append(mp.local_path) %}\n  {% endfor %}\n  {{ mps }}\n\n_nova_rootwrap_conf_overrides:\n  DEFAULT:\n    filters_path: \"{{ nova_conf_dir }}/rootwrap.d,/usr/share/nova/rootwrap\"\n    exec_dirs: \"{{ nova_bin }},/sbin,/usr/sbin,/bin,/usr/bin,/usr/local/bin,/usr/local/sbin\"\n\nnova_core_files:\n  - tmp_f: \"/tmp/api-paste.ini\"\n    target_f: \"{{ nova_conf_version_dir }}/api-paste.ini\"\n    config_overrides: \"{{ nova_api_paste_ini_overrides }}\"\n    config_type: \"ini\"\n  - tmp_f: \"/tmp/rootwrap.conf\"\n    target_f: \"{{ nova_conf_version_dir }}/rootwrap.conf\"\n    config_overrides: \"{{ _nova_rootwrap_conf_overrides | combine(nova_rootwrap_conf_overrides, recursive=True) }}\"\n    config_type: \"ini\"\n    owner: \"root\"\n    group: \"{{ nova_system_group_name }}\"\n    mode: \"0640\"\n\n_nova_my_ip: \"{{ (nova_management_address == 'localhost') | ternary('127.0.0.1', nova_management_address) }}\"\n\n_nova_scheduler_filters: |-\n  {% set default_filters = nova_scheduler_default_filters %}\n  {% if default_filters is not iterable and default_filters is string %}\n  {%   set filters = default_filters.split(',') %}\n  {% else %}\n  {%   set filters = default_filters %}\n  {% endif %}\n  {% if nova_blazar_enabled | bool %}\n  {%   set _ = filters.extend(nova_blazar_scheduler_filters) %}\n  {% endif %}\n  {{ filters + nova_scheduler_extra_filters }}\n\n_qemu_default_conf_dict: |-\n  {% set qemu_dict = {} %}\n  {% if nova_rbd_inuse or nova_cinder_rbd_inuse %}\n  {%   set _ = qemu_dict.update({'max_files': '32768'}) %}\n  {%   set _ = qemu_dict.update({'max_processes': '131072'}) %}\n  {% endif %}\n  {{ qemu_dict }}\n\n_nova_qemu_conf: \"{{ _qemu_default_conf_dict | combine(qemu_conf_dict) }}\"\n\n_nova_cache_backend_map:\n  dogpile:\n    - oslo_cache.memcache_pool\n    - dogpile.cache.pymemcache\n    - dogpile.cache.memcached\n    - dogpile.cache.bmemcached\n  mongo:\n    - oslo_cache.mongo\n  etcd3gw:\n    - oslo_cache.etcd3gw\n\n_nova_cache_backend_package: |-\n  {% set oslo = namespace(backend='dogpile') %}\n  {% for key, value in _nova_cache_backend_map.items() %}\n  {%   if nova_cache_backend in value %}\n  {%     set oslo.backend = key %}\n  {%-   endif %}\n  {%- endfor %}\n  oslo.cache[{{ oslo.backend }}]\n","created":"2025-12-08T13:39:57.353573Z","updated":"2025-12-08T13:39:57.353604Z","path":"/home/zuul/src/opendev.org/openstack/openstack-ansible-os_nova/vars/main.yml"}