summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/service_catalog.yml
blob: bd964b2ce1e6f1fcccc0f58b0d98c53eab514b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
- name: Service Catalog Install Checkpoint Start
  hosts: oo_all_hosts
  gather_facts: false
  tasks:
  - name: Set Service Catalog install 'In Progress'
    set_stats:
      data:
        installer_phase_servicecatalog: "In Progress"
      aggregate: false

- name: Service Catalog
  hosts: oo_first_master
  roles:
  - openshift_service_catalog
  - ansible_service_broker
  - template_service_broker
  vars:
    first_master: "{{ groups.oo_first_master[0] }}"

- name: Service Catalog Install Checkpoint End
  hosts: oo_all_hosts
  gather_facts: false
  tasks:
  - name: Set Service Catalog install 'Complete'
    set_stats:
      data:
        installer_phase_servicecatalog: "Complete"
      aggregate: false