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
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
---
|
|
- name: Ensure that overcloud nodes' BIOS are configured
|
|
hosts: overcloud
|
|
gather_facts: no
|
|
max_fail_percentage: >-
|
|
{{ drac_bios_max_fail_percentage |
|
|
default(kayobe_max_fail_percentage) |
|
|
default(100) }}
|
|
vars:
|
|
bios_config:
|
|
OneTimeBootMode: "OneTimeBootSeq"
|
|
OneTimeBootSeqDev: NIC.Integrated.1-1-1
|
|
roles:
|
|
- role: stackhpc.drac
|
|
drac_address: "{{ ipmi_address }}"
|
|
drac_username: "{{ ipmi_username }}"
|
|
drac_password: "{{ ipmi_password }}"
|
|
drac_bios_config: "{{ bios_config }}"
|
|
drac_reboot: True
|
|
|
|
tasks:
|
|
- name: Ensure BIOS configuration is applied
|
|
command: "racadm {{ item }}"
|
|
with_items:
|
|
- set Nic.NICConfig.1.LegacyBootProto NONE
|
|
- jobqueue create NIC.Integrated.1-1-1 -s TIME_NOW
|
|
- set Nic.NICConfig.2.LegacyBootProto NONE
|
|
- jobqueue create NIC.Integrated.1-2-1 -s TIME_NOW
|
|
- set Nic.NICConfig.3.LegacyBootProto PXE
|
|
- jobqueue create NIC.Integrated.1-3-1 -s TIME_NOW
|
|
- set Nic.NICConfig.4.LegacyBootProto NONE
|
|
- jobqueue create NIC.Integrated.1-4-1 -s TIME_NOW
|
|
- set BIOS.BiosBootSettings.bootseq NIC.Integrated.1-3-1,HardDisk.List.1-1,Optical.SATAEmbedded.J-1
|
|
- jobqueue create BIOS.Setup.1-1
|
|
- serveraction powercycle
|