kayobe/ansible/overcloud-service-config-save.yml
Mark Goddard 6c54ce4d3b Introduce max fail percentage to playbooks
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
2024-06-03 16:24:29 +00:00

35 lines
1.1 KiB
YAML

---
- name: Save overcloud service configuration
hosts: overcloud
max_fail_percentage: >-
{{ overcloud_service_config_save_max_fail_percentage |
default(kayobe_max_fail_percentage) |
default(100) }}
tags:
- service-config-save
vars:
# Override this to change the directory in which the configuration will be
# saved.
config_save_path: "{{ lookup('env', 'PWD') ~ '/overcloud-config' }}"
# Override this to change the directory on the remote hosts from which the
# kolla-ansible configuration will be saved.
node_config_directory: "/etc/kolla"
tasks:
- name: Find overcloud service configuration files
find:
paths: "{{ node_config_directory }}"
recurse: True
excludes: "{{ exclude_patterns | default(omit) }}"
patterns: "{{ include_patterns | default(omit) }}"
register: find_result
become: true
- name: Save overcloud service configuration
fetch:
src: "{{ item.path }}"
dest: "{{ config_save_path }}"
with_items: "{{ find_result.files }}"
become: true
loop_control:
label: "{{ item.path }}"