697b2eecc2
The compute group was used in a few places, but this now overlaps with the group used for virtualised compute nodes.
18 lines
529 B
YAML
18 lines
529 B
YAML
---
|
|
# Configure the Dell baremetal compute nodes to PXE boot.
|
|
|
|
# Add Dell baremetal compute nodes to the Ansible inventory.
|
|
- include: dell-compute-node-inventory.yml
|
|
|
|
- name: Ensure Dell baremetal compute nodes are PXE booted
|
|
hosts: baremetal-compute
|
|
gather_facts: no
|
|
vars:
|
|
# Set this to the index of the inteface on which to enable PXE.
|
|
drac_pxe_interface: 1
|
|
# Set this to a list of indices of all interfaces.
|
|
drac_pxe_all_interfaces: [1, 2, 3, 4]
|
|
roles:
|
|
- role: ssh-known-host
|
|
- role: drac-pxe
|