prepare-deploy-sno1.yml 416 B

123456789101112131415161718192021
  1. ---
  2. - name: Prepare the utility VM for deployment of SNO1 cluster
  3. hosts: utility.lab.example.com
  4. become: true
  5. gather_facts: false
  6. vars:
  7. node:
  8. ip: 192.168.50.18
  9. mac: 01-52-54-00-00-32-12
  10. name: node
  11. role: SNO
  12. cluster: sno1
  13. online: yes
  14. roles:
  15. - role: check-env
  16. tags: check
  17. - role: deploy-infra
  18. tags: infra
  19. - role: prep-work
  20. tags: prep
  21. ...