config.yml 880 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: OLM Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set OLM install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_olm:
  11. title: "OLM Install"
  12. playbook: "deploy/playbook/config.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - name: Operator Lifecycle Manager
  16. hosts: oo_first_master
  17. vars:
  18. first_master: "{{ groups.oo_first_master[0] }}"
  19. tasks:
  20. - import_role:
  21. name: olm
  22. when: openshift_version is version_compare('3.9', '>=')
  23. - name: OLM Install Checkpoint End
  24. hosts: all
  25. gather_facts: false
  26. tasks:
  27. - name: Set OLM install 'Complete'
  28. run_once: true
  29. set_stats:
  30. data:
  31. installer_phase_olm:
  32. status: "Complete"
  33. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"