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
30 lines
793 B
YAML
30 lines
793 B
YAML
---
|
|
- name: Gather and display BIOS and RAID facts from iDRACs
|
|
hosts: overcloud
|
|
gather_facts: no
|
|
max_fail_percentage: >-
|
|
{{ drac_facts_max_fail_percentage |
|
|
default(kayobe_max_fail_percentage) |
|
|
default(100) }}
|
|
roles:
|
|
# The role simply pulls in the drac_facts module.
|
|
- role: stackhpc.drac-facts
|
|
tasks:
|
|
- name: Gather facts via DRAC
|
|
local_action:
|
|
module: drac_facts
|
|
address: "{{ ipmi_address }}"
|
|
username: "{{ ipmi_username }}"
|
|
password: "{{ ipmi_password }}"
|
|
register: result
|
|
|
|
- name: Display results
|
|
debug:
|
|
var: result
|
|
|
|
- name: Write facts to a file
|
|
local_action:
|
|
module: copy
|
|
content: "{{ result }}"
|
|
dest: "/tmp/drac-facts-{{ inventory_hostname }}.json"
|