summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/openshift_prometheus.yml
blob: a73b294a5435f82fabd597ba55b87884b1469fb7 (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
---
- name: Prometheus Install Checkpoint Start
  hosts: oo_all_hosts
  gather_facts: false
  tasks:
  - name: Set Prometheus install 'In Progress'
    set_stats:
      data:
        installer_phase_prometheus: "In Progress"
      aggregate: false

- name: Create Hosted Resources - openshift_prometheus
  hosts: oo_first_master
  roles:
  - role: openshift_prometheus

- name: Prometheus Install Checkpoint End
  hosts: oo_all_hosts
  gather_facts: false
  tasks:
  - name: Set Prometheus install 'Complete'
    set_stats:
      data:
        installer_phase_prometheus: "Complete"
      aggregate: false