config.yml 824 B

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. - name: GlusterFS Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set GlusterFS install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_glusterfs:
  11. title: "GlusterFS Install"
  12. playbook: "playbooks/openshift-glusterfs/config.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - import_playbook: setup_nodes.yml
  16. - import_playbook: gluster_hosts.yml
  17. - import_playbook: gluster_main.yml
  18. - name: GlusterFS Install Checkpoint End
  19. hosts: all
  20. gather_facts: false
  21. tasks:
  22. - name: Set GlusterFS install 'Complete'
  23. run_once: true
  24. set_stats:
  25. data:
  26. installer_phase_glusterfs:
  27. status: "Complete"
  28. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"