6c54ce4d3b
This allows us to continue execution until a certain proportion of hosts fail. This can be useful at scale, where failures are common, and restarting a deployment is time-consuming. The default max failure percentage is 100, keeping the default behaviour. A global max failure percentage may be set via kayobe_max_fail_percentage, and individual playbooks may define a max failure percentage via <playbook>_max_fail_percentage. Related Kolla Ansible patch: https://review.opendev.org/c/openstack/kolla-ansible/+/805598 Change-Id: Ib81c72b63be5765cca664c38141ffc769640cf07
119 lines
4.2 KiB
YAML
119 lines
4.2 KiB
YAML
---
|
|
# Create a virtualenv for ansible modules to use on the remote target systems
|
|
# when running kayobe.
|
|
|
|
- name: Ensure a virtualenv exists for kayobe
|
|
hosts: seed:seed-hypervisor:overcloud:infra-vms
|
|
gather_facts: False
|
|
max_fail_percentage: >-
|
|
{{ kayobe_target_venv_max_fail_percentage |
|
|
default(host_configure_max_fail_percentage) |
|
|
default(kayobe_max_fail_percentage) |
|
|
default(100) }}
|
|
tags:
|
|
- kayobe-target-venv
|
|
tasks:
|
|
- name: Set a fact about the kayobe target virtualenv
|
|
set_fact:
|
|
virtualenv: "{{ ansible_python_interpreter | dirname | dirname }}"
|
|
when:
|
|
- ansible_python_interpreter is defined
|
|
- not ansible_python_interpreter.startswith('/bin')
|
|
- not ansible_python_interpreter.startswith('/usr/bin')
|
|
|
|
- block:
|
|
- name: Gather facts
|
|
setup:
|
|
filter: "{{ kayobe_ansible_setup_filter }}"
|
|
gather_subset: "{{ kayobe_ansible_setup_gather_subset }}"
|
|
when: not ansible_facts
|
|
register: gather_facts
|
|
|
|
- name: Ensure the Python venv package is installed on Debian family systems
|
|
package:
|
|
name: python3-venv
|
|
state: present
|
|
cache_valid_time: "{{ apt_cache_valid_time }}"
|
|
update_cache: "True"
|
|
become: True
|
|
when: ansible_facts.os_family == 'Debian'
|
|
|
|
- name: Ensure global virtualenv directory exists
|
|
file:
|
|
path: "{{ virtualenv_path }}"
|
|
state: directory
|
|
owner: "{{ ansible_facts.user_uid }}"
|
|
group: "{{ ansible_facts.user_gid }}"
|
|
mode: 0755
|
|
# Check whether the virtualenv directory is a subdirectory of the
|
|
# global virtualenv directory.
|
|
when: virtualenv.startswith(virtualenv_path)
|
|
become: True
|
|
|
|
- name: Ensure kayobe virtualenv directory exists
|
|
file:
|
|
path: "{{ virtualenv }}"
|
|
state: directory
|
|
owner: "{{ ansible_facts.user_uid }}"
|
|
group: "{{ ansible_facts.user_gid }}"
|
|
mode: 0700
|
|
become: True
|
|
|
|
- name: Ensure kayobe virtualenv has the latest version of pip installed
|
|
pip:
|
|
name: pip
|
|
state: latest
|
|
virtualenv: "{{ virtualenv }}"
|
|
# Site packages are required for using the dnf module, which is not
|
|
# available via PyPI.
|
|
virtualenv_site_packages: True
|
|
virtualenv_command: "python3.{{ ansible_facts.python.version.minor }} -m venv"
|
|
|
|
- name: Ensure kayobe virtualenv has SELinux bindings installed
|
|
pip:
|
|
name: selinux
|
|
state: latest
|
|
virtualenv: "{{ virtualenv }}"
|
|
when:
|
|
- ansible_facts.os_family == 'RedHat'
|
|
vars:
|
|
# Use the system python interpreter since the virtualenv might not
|
|
# exist.
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
when: virtualenv is defined
|
|
|
|
# If we gathered facts earlier it would have been with a different Python
|
|
# interpreter. For gathering modes that may use a fact cache, gather facts
|
|
# again using the interpreter from the virtual environment.
|
|
- name: Gather facts
|
|
setup:
|
|
filter: "{{ kayobe_ansible_setup_filter }}"
|
|
gather_subset: "{{ kayobe_ansible_setup_gather_subset }}"
|
|
when:
|
|
- virtualenv is defined
|
|
- gather_facts is not skipped
|
|
- lookup('config', 'DEFAULT_GATHERING') != 'implicit'
|
|
|
|
- block:
|
|
- name: Ensure Python setuptools and pip packages are installed
|
|
vars:
|
|
packages:
|
|
- python3-setuptools
|
|
- python3-pip
|
|
package:
|
|
name: "{{ packages | select | list }}"
|
|
state: present
|
|
become: True
|
|
when: virtualenv is not defined
|
|
|
|
- name: Ensure kolla-ansible virtualenv has docker SDK for python installed
|
|
pip:
|
|
name: docker
|
|
state: latest
|
|
virtualenv: "{{ virtualenv | default(omit) }}"
|
|
extra_args: "{% if docker_upper_constraints_file %}-c {{ docker_upper_constraints_file }}{% endif %}"
|
|
become: "{{ virtualenv is not defined }}"
|
|
vars:
|
|
docker_upper_constraints_file: "{{ pip_upper_constraints_file }}"
|
|
when: "'docker' in group_names"
|