1234567891011121314151617181920212223242526272829303132333435363738 |
- ---
- - name: Logging Install Checkpoint Start
- hosts: all
- gather_facts: false
- tasks:
- - name: Set Logging install 'In Progress'
- run_once: true
- set_stats:
- data:
- installer_phase_logging:
- status: "In Progress"
- start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
- - name: OpenShift Aggregated Logging
- hosts: oo_first_master
- roles:
- - openshift_logging
- # TODO: Remove when master config property is removed
- - name: Update Master configs
- hosts: oo_masters:!oo_first_master
- tasks:
- - block:
- - import_role:
- name: openshift_logging
- tasks_from: update_master_config
- - name: Logging Install Checkpoint End
- hosts: all
- gather_facts: false
- tasks:
- - name: Set Logging install 'Complete'
- run_once: true
- set_stats:
- data:
- installer_phase_logging:
- status: "Complete"
- end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|