config.yml 555 B

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