204dff820d
Addition of an inspection role, the appropriate test and enrollment playbooks, and an entry for the node inspection to take place as part of the long running non-voting job for initial testing. Implements: blueprint bifrost-inspector-support Depends-On: I4ba3f0cf4ad6f5466e52f5d034bb217f06eec7dd Change-Id: Iceaf96aaeedc99530fabe2af47bab414d689c3dd
14 lines
331 B
YAML
14 lines
331 B
YAML
---
|
|
- hosts: localhost
|
|
connection: local
|
|
name: "Collect facts"
|
|
become: no
|
|
gather_facts: yes
|
|
- hosts: baremetal
|
|
connection: local
|
|
name: "Enroll hardware from inventory into Ironic"
|
|
become: no
|
|
roles:
|
|
- role: ironic-enroll-dynamic
|
|
- { role: ironic-inspect-node, when: inspect_nodes | default('false') | bool }
|