service_catalog.yml 717 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. - name: Service Catalog Install Checkpoint Start
  3. hosts: oo_all_hosts
  4. gather_facts: false
  5. tasks:
  6. - name: Set Service Catalog install 'In Progress'
  7. set_stats:
  8. data:
  9. installer_phase_servicecatalog: "In Progress"
  10. aggregate: false
  11. - name: Service Catalog
  12. hosts: oo_first_master
  13. roles:
  14. - openshift_service_catalog
  15. - ansible_service_broker
  16. - template_service_broker
  17. vars:
  18. first_master: "{{ groups.oo_first_master[0] }}"
  19. - name: Service Catalog Install Checkpoint End
  20. hosts: oo_all_hosts
  21. gather_facts: false
  22. tasks:
  23. - name: Set Service Catalog install 'Complete'
  24. set_stats:
  25. data:
  26. installer_phase_servicecatalog: "Complete"
  27. aggregate: false