config.yml 963 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: Service Catalog Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Service Catalog install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_servicecatalog:
  11. title: "Service Catalog Install"
  12. playbook: "playbooks/openshift-service-catalog/config.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - name: Service Catalog
  16. hosts: oo_first_master
  17. roles:
  18. - openshift_service_catalog
  19. - ansible_service_broker
  20. - template_service_broker
  21. vars:
  22. first_master: "{{ groups.oo_first_master[0] }}"
  23. - name: Service Catalog Install Checkpoint End
  24. hosts: all
  25. gather_facts: false
  26. tasks:
  27. - name: Set Service Catalog install 'Complete'
  28. run_once: true
  29. set_stats:
  30. data:
  31. installer_phase_servicecatalog:
  32. status: "Complete"
  33. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"