123456789101112131415161718192021222324252627282930313233343536 |
- ---
- - name: Metrics Install Checkpoint Start
- hosts: localhost
- connection: local
- gather_facts: false
- tasks:
- - name: Set Metrics install 'In Progress'
- set_stats:
- data:
- installer_phase_metrics: "In Progress"
- aggregate: false
- - name: OpenShift Metrics
- hosts: oo_first_master
- roles:
- - role: openshift_metrics
- - name: OpenShift Metrics
- hosts: oo_masters:!oo_first_master
- serial: 1
- tasks:
- - name: Setup the non-first masters configs
- include_role:
- name: openshift_metrics
- tasks_from: update_master_config.yaml
- - name: Metrics Install Checkpoint End
- hosts: localhost
- connection: local
- gather_facts: false
- tasks:
- - name: Set Metrics install 'Complete'
- set_stats:
- data:
- installer_phase_metrics: "Complete"
- aggregate: false
|