Dmitriy Rabotyagov c6a2e94c5a Auto-fix usage of modules via FQCN
Since ansible-core 2.10 it is recommended to use modules via FQCN
In order to align with recommendation, we perform migration
by applying suggestions made by `ansible-lint --fix=fqcn`

Change-Id: I609fd749e50b5c9f5b52d04ae2a566671c476720
2025-02-12 14:25:48 +01:00

112 lines
3.9 KiB
YAML

---
# Copyright 2016, Comcast Corporation
#
# 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: Gather variables for each operating system
ansible.builtin.include_vars: "{{ item }}"
with_first_found:
- "{{ ansible_facts['distribution'] | lower }}-{{ ansible_facts['distribution_version'] | lower }}.yml"
- "{{ ansible_facts['distribution'] | lower }}-{{ ansible_facts['distribution_major_version'] | lower }}.yml"
- "{{ ansible_facts['os_family'] | lower }}-{{ ansible_facts['distribution_major_version'] | lower }}.yml"
- "{{ ansible_facts['distribution'] | lower }}.yml"
- "{{ ansible_facts['os_family'] | lower }}.yml"
tags:
- always
- name: Including osa.db_setup role
ansible.builtin.include_role:
name: openstack.osa.db_setup
apply:
tags:
- common-db
- rally-config
vars:
_oslodb_setup_host: "{{ rally_db_setup_host }}"
_oslodb_ansible_python_interpreter: "{{ rally_db_setup_python_interpreter }}"
_oslodb_setup_endpoint: "{{ rally_galera_address }}"
_oslodb_setup_port: "{{ rally_galera_port }}"
_oslodb_databases:
- name: "{{ rally_galera_database }}"
users:
- username: "{{ rally_galera_user }}"
password: "{{ rally_galera_password }}"
tags:
- always
- name: Including rally_pre_install tasks
ansible.builtin.include_tasks: rally_pre_install.yml
tags:
- rally-install
- name: Retrieve the constraints URL
ansible.builtin.uri:
url: "{{ rally_upper_constraints_url }}"
return_content: true
register: _u_c_contents_uri
until: _u_c_contents_uri is success
retries: 5
delay: 5
check_mode: false
when: rally_openstack_git_repo is search('http')
- name: Retrieve local filesystem upper constraints in CI
command: >-
git --git-dir={{ rally_openstack_git_repo.split('file://')[1] }}/.git show
{{ rally_openstack_git_install_branch | default('master') }}:upper-constraints.txt
when: rally_openstack_git_repo is search('file://')
register: _u_c_contents_git
delegate_to: localhost
tags:
- skip_ansible_lint
- name: Set the constraints content
ansible.builtin.set_fact:
_u_c_contents: |-
{% if _u_c_contents_uri is not skipped %}
{{ _u_c_contents_uri.content }}
{% elif _u_c_contents_git is not skipped %}
{{ _u_c_contents_git.stdout }}
{% endif %}
- name: Install the python venv
ansible.builtin.import_role:
name: "python_venv_build"
vars:
venv_python_executable: "{{ rally_venv_python_executable }}"
venv_build_constraints: "{{ _u_c_contents.split('\n') | reject('match', '^PyYAML=') | list }}"
venv_build_global_constraints: "{{ [] }}"
venv_build_distro_package_list: "{{ rally_devel_distro_packages }}"
venv_install_destination_path: "{{ rally_bin | dirname }}"
venv_install_distro_package_list: "{{ rally_distro_packages }}"
venv_pip_install_args: "{{ rally_pip_install_args }}"
venv_pip_packages: "{{ rally_pip_packages }}"
venv_wheel_build_enable: false
venv_facts_when_changed:
- section: "rally"
option: "venv_tag"
value: "{{ rally_venv_tag }}"
tags:
- rally-install
- name: Including rally_post_install tasks
ansible.builtin.include_tasks: rally_post_install.yml
tags:
- rally-config
- name: Including rally_db_setup tasks
ansible.builtin.include_tasks: rally_db_setup.yml
when: inventory_hostname == groups['utility_all'][0]
tags:
- rally-config