{"id":393,"sha1":"491405bb953c427e2fbdf7f990af6dde6e4ef854","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 2018, 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\n#\n# Required variables\n#\n\n# The path where venvs are extracted to\n# on the target host during an install, for example:\n# venv_install_destination_path: \"/openstack/venvs/myvenv\"\n\n#\n# Optional variables\n#\n\n# Select the tooling which will be used for package installation\n# Valid options: pip, uv\nvenv_install_tool: pip\n\n# Distribution packages which must be installed\n# on all hosts when building python wheels.\nvenv_build_base_distro_package_list: \"{{ _venv_build_base_distro_package_list }}\"\nvenv_install_base_distro_package_list: \"{{ _venv_install_base_distro_package_list }}\"\n\n# Distribution packages which must be installed\n# on the host for the purpose of building the\n# python wheels.\nvenv_build_distro_package_list: []\n\n# Distribution packages which must be installed\n# on the host when installing the venv.\nvenv_install_distro_package_list: []\n\n# Set the package install state for packages\n# Options are 'present' and 'latest'\nvenv_distro_package_state: \"latest\"\nvenv_pip_package_state: \"latest\"\n\n# The time in seconds that the distribution package\n# cache is valid for. This is only used by the apt\n# package manager.\nvenv_distro_cache_valid_time: 600\n\n# Default python packages which will be installed\n# into every venv.\nvenv_default_pip_packages: []\n\n# Python packages which must be installed\n# into the venv.\nvenv_pip_packages: []\n\n# Don't use the site-wide PIP configuration file when\n# upgrading PIP (some operating systems have issued\n# with upgrades w/ extra-index-urls)\n# ref: https://github.com/pypa/pip/issues/4195\nvenv_pip_upgrade_noconf: false\n\n# A list of constraints to be applied when building\n# or installing python packages.\nvenv_build_constraints: []\n\n# A list of pip constraints to be applied as global\n# constraints ahead of the list in venv_build_constraints.\n# This is useful for global pins across all venvs.\nvenv_build_global_constraints: []\n\n# Arguments to pass to pip when building the wheels\nvenv_pip_build_args: \"\"\n\n# Environemnt to be set for building the wheels\nvenv_pip_build_env: {}\n\n# Default arguments to pass to pip when installing into\n# the venv.\nvenv_default_pip_install_args: >-\n  {%- if (groups[venv_build_group] is defined) and (groups[venv_build_group] | length > 0) %}\n  {%- if (venv_wheel_build_enable | bool) %}\n  --find-links {{ openstack_repo_url | default('http://localhost') }}/os-releases/{{ openstack_release | default('master') }}/{{ _venv_build_dist_arch }}/wheels/\n  {%- endif %}\n  --trusted-host {{ (openstack_repo_url | default('http://localhost')) | urlsplit('hostname') -}}\n  {%- endif %}\n\n# Arguments to pass to pip when installing into the venv\nvenv_pip_install_args: \"\"\n\n# Environemnt to be set for building the wheels\nvenv_pip_install_env:\n  REQUESTS_CA_BUNDLE: \"{{ _venv_install_ca_bundle_path }}\"\n\n# Some python packages have C bindings which tend to be very\n# particular about the version of their underlying shared libraries.\n# To ensure things run smoothly for stable releases, we opt to\n# use the distro packages for these python packages and symlink the\n# appropriate python library files and their bindings into the venv.\n# This variable should contain the list of packages installed which\n# should be symlinked into the venv.\nvenv_packages_to_symlink: []\n\n# The python executable to use for creating the venv\nvenv_python_executable: \"python3\"\n\n# Enable the recreation of the venv from scratch.\n# This is useful if you think the venv may be corrupted\n# or if you have changed options which means that packages\n# should be removed from the venv.\n# Under normal circumstances, the installs will be done\n# into the existing venv over the top of any previously\n# installed packages.\nvenv_rebuild: false\n\n# Enable the recreation of the pre-built wheels.\n# This is useful if wheels build has been interrupted or\n# previously failed because of connectivity or other issues.\nvenv_wheels_rebuild: false\n\n# Enable/disable the build of python wheels\n# If the package concerned is built from a tarball, rather\n# than from a git source or pypi, then this may be best to\n# set to false.\nvenv_wheel_build_enable: \"{{ (venv_build_group in groups and groups[venv_build_group] | length > 0) }}\"\n\n# Set the name of the ansible group, that will be used\n# to identify suitable host to build wheels on\nvenv_build_group: repo_all\n\n# Set the host where the wheels will be built.\n# If this host is not the same as the target host, then\n# python wheels will be built in order to speed up the\n# subsequent venv builds on this host and others. When\n# this is the same as the target host, then we will not\n# bother building wheels.\nvenv_build_host: \"{{ venv_build_targets[_venv_build_dist_arch] }}\"\n\n# The owner of directories and files held on the build host.\n# venv_build_host_user_name: \"root\"\n# venv_build_host_group_name: \"root\"\n\n# The path for the wheel build venv.\n# This is the path where a venv will be created on the\n# build host for the purpose of building the wheels.\nvenv_build_host_venv_path: \"/openstack/venvs/wheel-builder-{{ venv_python_executable }}\"\n\n# The path where the requirements/constraints are stored\n# on the build host in order to ensure the build process\n# is idempotent.\nvenv_build_host_requirements_path: >-\n  /var/www/repo/os-releases/{{ openstack_release | default('master') }}/{{ _venv_build_dist_arch }}/requirements\n\n# The path where the wheels are cached on the build host\n# for speeding up the build process.\nvenv_build_host_wheel_path: >-\n  /var/www/repo/os-releases/{{ openstack_release | default('master') }}/{{ _venv_build_dist_arch }}/wheels\n\n# The facts to set when the venv changes during a\n# build, or the installation of a venv.\n# Eg:\n# set_facts_when_changed:\n#   - section: glance\n#     option: venv_tag\n#     value: \"{{ glance_venv_tag }}\"\nvenv_facts_when_changed: []\n\n# The INI file name to use for the fact setting.\nvenv_facts_dest: \"openstack_ansible\"\n","created":"2025-12-08T13:39:54.029117Z","updated":"2025-12-08T13:39:54.029176Z","path":"/home/zuul/src/opendev.org/openstack/ansible-role-python_venv_build/defaults/main.yml"}