1234567891011121314151617181920212223242526272829303132 |
- ---
- - name: Cluster Monitoring Operator Checkpoint Start
- hosts: all
- gather_facts: false
- tasks:
- - name: Set Cluster Monitoring Operator 'In Progress'
- run_once: true
- set_stats:
- data:
- installer_phase_cluster_monitoring_operator:
- title: "Cluster Monitoring Operator"
- playbook: "playbooks/openshift-monitoring/config.yml"
- status: "In Progress"
- start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
- - name: Configure Cluster Monitoring Operator
- hosts: oo_first_master
- roles:
- - role: openshift_cluster_monitoring_operator
- - name: Cluster Monitoring Operator Checkpoint End
- hosts: all
- gather_facts: false
- tasks:
- - name: Set Cluster Monitoring Operator 'Complete'
- run_once: true
- set_stats:
- data:
- installer_phase_cluster_monitoring_operator:
- status: "Complete"
- end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|