1234567891011121314151617181920212223242526272829303132333435 |
- ---
- - name: OLM Install Checkpoint Start
- hosts: all
- gather_facts: false
- tasks:
- - name: Set OLM install 'In Progress'
- run_once: true
- set_stats:
- data:
- installer_phase_olm:
- title: "OLM Install"
- playbook: "deploy/playbook/config.yml"
- status: "In Progress"
- start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
- - name: Operator Lifecycle Manager
- hosts: oo_first_master
- vars:
- first_master: "{{ groups.oo_first_master[0] }}"
- tasks:
- - import_role:
- name: olm
- when: openshift_version | version_compare('3.9', '>=')
- - name: OLM Install Checkpoint End
- hosts: all
- gather_facts: false
- tasks:
- - name: Set OLM install 'Complete'
- run_once: true
- set_stats:
- data:
- installer_phase_olm:
- status: "Complete"
- end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|