service_catalog.yml 751 B

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