prepare-deploy-sno1.yml 398 B

1234567891011121314151617181920
  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. roles:
  14. - role: check-env
  15. tags: check
  16. - role: deploy-infra
  17. tags: infra
  18. - role: prep-work
  19. tags: prep
  20. ...