prepare-deploy-sno1.yml 351 B

12345678910111213141516
  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. roles:
  7. - role: check-env
  8. - role: deploy-infra
  9. vars:
  10. node:
  11. ip: 192.168.50.18
  12. mac: 01-52-54-00-00-32-12
  13. name: node
  14. role: SNO
  15. cluster: sno1
  16. ...