bifrost/playbooks/deploy.yaml
Julia Kreger f18c26a9b3 Rearranging the repository
Moved Ansible specific elements to playbooks/
2015-04-16 15:22:30 -04:00

21 lines
708 B
YAML

---
- hosts: localhost
connection: local
name: "Enroll hardware from baremetal.csv into Ironic"
sudo: yes
gather_facts: yes
pre_tasks:
- name: "Error if variable baremetal_csv_file is not defined"
local_action: fail msg="baremetal_csv_file must be defined for this playbook to execute, please pass option '-e baremetal_csv_file=<path/to/file>'"
when: baremetal_csv_file is not defined
roles:
- role: bifrost-validate-host-for-deploy
baremetal_csv_file: "{{ baremetal_csv_file }}"
- hosts: localhost
connection: local
name: "Enroll hardware from baremetal.csv into Ironic"
gather_facts: yes
roles:
- role: bifrost-configdrives
- role: bifrost-setup-nodes