8be12b71d7
include is marked as deprecated since ansible 2.4[0] Switch to include_tasks or import_playbook as necessary [0] https://docs.ansible.com/ansible/2.4/include_module.html#deprecated Change-Id: Ia1b826ca08ae042eec80f8c495ab030a087d97ba
18 lines
537 B
YAML
18 lines
537 B
YAML
---
|
|
# Configure the Dell baremetal compute nodes to PXE boot.
|
|
|
|
# Add Dell baremetal compute nodes to the Ansible inventory.
|
|
- import_playbook: 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
|