config.yml 689 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. - name: NFS Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set NFS install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_nfs:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - name: Configure nfs
  14. hosts: oo_nfs_to_config
  15. roles:
  16. - role: os_firewall
  17. - role: openshift_storage_nfs
  18. - name: NFS Install Checkpoint End
  19. hosts: all
  20. gather_facts: false
  21. tasks:
  22. - name: Set NFS install 'Complete'
  23. run_once: true
  24. set_stats:
  25. data:
  26. installer_phase_nfs:
  27. status: "Complete"
  28. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"