config.yml 589 B

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: NFS Install Checkpoint Start
  3. hosts: localhost
  4. connection: local
  5. gather_facts: false
  6. tasks:
  7. - name: Set NFS install 'In Progress'
  8. set_stats:
  9. data:
  10. installer_phase_nfs: "In Progress"
  11. aggregate: false
  12. - name: Configure nfs
  13. hosts: oo_nfs_to_config
  14. roles:
  15. - role: os_firewall
  16. - role: openshift_storage_nfs
  17. - name: NFS Install Checkpoint End
  18. hosts: localhost
  19. connection: local
  20. gather_facts: false
  21. tasks:
  22. - name: Set NFS install 'Complete'
  23. set_stats:
  24. data:
  25. installer_phase_nfs: "Complete"
  26. aggregate: false