Merge "Allow setting any_errors_fatal true for gather-facts"
This commit is contained in:
commit
83a51bbb30
@ -4,6 +4,7 @@
|
|||||||
# building their configurations.
|
# building their configurations.
|
||||||
- name: Gather facts for all hosts
|
- name: Gather facts for all hosts
|
||||||
hosts: all
|
hosts: all
|
||||||
|
any_errors_fatal: "{{ kolla_ansible_setup_any_errors_fatal | bool }}"
|
||||||
serial: '{{ kolla_serial|default("0") }}'
|
serial: '{{ kolla_serial|default("0") }}'
|
||||||
gather_facts: false
|
gather_facts: false
|
||||||
tasks:
|
tasks:
|
||||||
@ -28,6 +29,7 @@
|
|||||||
# the limit.
|
# the limit.
|
||||||
- name: Gather facts for all hosts (if using --limit)
|
- name: Gather facts for all hosts (if using --limit)
|
||||||
hosts: all_using_limit_True
|
hosts: all_using_limit_True
|
||||||
|
any_errors_fatal: "{{ kolla_ansible_setup_any_errors_fatal | bool }}"
|
||||||
serial: '{{ kolla_serial|default("0") }}'
|
serial: '{{ kolla_serial|default("0") }}'
|
||||||
gather_facts: false
|
gather_facts: false
|
||||||
vars:
|
vars:
|
||||||
|
@ -36,6 +36,14 @@ kolla_ansible_setup_filter: "{{ omit }}"
|
|||||||
# By default, we do not provide a gather subset.
|
# By default, we do not provide a gather subset.
|
||||||
kolla_ansible_setup_gather_subset: "{{ omit }}"
|
kolla_ansible_setup_gather_subset: "{{ omit }}"
|
||||||
|
|
||||||
|
# This variable is used as "any_errors_fatal" setting for the setup (gather
|
||||||
|
# facts) plays.
|
||||||
|
# This is useful for weeding out failing hosts early to avoid late failures
|
||||||
|
# due to missing facts (especially cross-host).
|
||||||
|
# Do note this still supports host fact caching and it will not affect
|
||||||
|
# scenarios with all facts cached (as there is no task to fail).
|
||||||
|
kolla_ansible_setup_any_errors_fatal: false
|
||||||
|
|
||||||
###################
|
###################
|
||||||
# Kolla options
|
# Kolla options
|
||||||
###################
|
###################
|
||||||
|
@ -24,6 +24,14 @@
|
|||||||
# Dummy variable to allow Ansible to accept this file.
|
# Dummy variable to allow Ansible to accept this file.
|
||||||
workaround_ansible_issue_8743: yes
|
workaround_ansible_issue_8743: yes
|
||||||
|
|
||||||
|
# This variable is used as "any_errors_fatal" setting for the setup (gather
|
||||||
|
# facts) plays.
|
||||||
|
# This is useful for weeding out failing hosts early to avoid late failures
|
||||||
|
# due to missing facts (especially cross-host).
|
||||||
|
# Do note this still supports host fact caching and it will not affect
|
||||||
|
# scenarios with all facts cached (as there is no task to fail).
|
||||||
|
#kolla_ansible_setup_any_errors_fatal: false
|
||||||
|
|
||||||
###############
|
###############
|
||||||
# Kolla options
|
# Kolla options
|
||||||
###############
|
###############
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
Kolla Ansible now supports failing execution early if fact collection
|
||||||
|
fails on any of the hosts. This is to avoid late failures due to missing
|
||||||
|
facts (especially cross-host).
|
||||||
|
This is possible by setting
|
||||||
|
``kolla_ansible_setup_any_errors_fatal: true``.
|
||||||
|
Do note this still supports host fact caching and it will not affect
|
||||||
|
scenarios with all facts cached (as there is no task to fail).
|
@ -5,6 +5,10 @@
|
|||||||
ansible_python_interpreter: /usr/bin/python3
|
ansible_python_interpreter: /usr/bin/python3
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
# NOTE(yoctozepto): In CI it makes sense to always try to fail
|
||||||
|
# as early as possible.
|
||||||
|
kolla_ansible_setup_any_errors_fatal: true
|
||||||
|
|
||||||
kolla_base_distro: "{{ base_distro }}"
|
kolla_base_distro: "{{ base_distro }}"
|
||||||
# Zed dropped install_type so we have it only on upgrades
|
# Zed dropped install_type so we have it only on upgrades
|
||||||
{% if is_upgrade %}
|
{% if is_upgrade %}
|
||||||
|
Loading…
Reference in New Issue
Block a user