123456789101112131415161718192021222324252627282930 |
- ---
- - 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:
- 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') }}"
|