new_install.yml 978 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. # This playbook is meant to be called while installing a new cluster.
  3. # We don't need to run tasks against the nodes to consume gluster volumes
  4. # because do that during the node plays.
  5. - name: GlusterFS Install Checkpoint Start
  6. hosts: all
  7. gather_facts: false
  8. tasks:
  9. - name: Set GlusterFS install 'In Progress'
  10. run_once: true
  11. set_stats:
  12. data:
  13. installer_phase_glusterfs:
  14. title: "GlusterFS Install"
  15. playbook: "playbooks/openshift-glusterfs/new_install.yml"
  16. status: "In Progress"
  17. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  18. - import_playbook: gluster_hosts.yml
  19. - import_playbook: gluster_main.yml
  20. - name: GlusterFS Install Checkpoint End
  21. hosts: all
  22. gather_facts: false
  23. tasks:
  24. - name: Set GlusterFS install 'Complete'
  25. run_once: true
  26. set_stats:
  27. data:
  28. installer_phase_glusterfs:
  29. status: "Complete"
  30. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"