main.yml 1.1 KB

12345678910111213141516171819202122232425262728
  1. ---
  2. # It's important that we don't explicitly pull this image here. Otherwise we
  3. # could result in upgrading a preinstalled environment. We'll have to set
  4. # openshift_image_tag correctly for upgrades.
  5. - name: Set version when containerized
  6. command: >
  7. docker run --rm {{ openshift.common.cli_image }}:latest version
  8. register: cli_image_version
  9. when: openshift.common.is_containerized | bool and openshift_image_tag is not defined
  10. - set_fact:
  11. l_image_tag: "{{ cli_image_version.stdout_lines[0].split(' ')[1].split('-')[0] }}"
  12. when: openshift.common.is_containerized | bool and openshift_image_tag is not defined
  13. - set_fact:
  14. l_image_tag: "{{ openshift_image_tag }}"
  15. when: openshift.common.is_containerized | bool and openshift_image_tag is defined
  16. - name: Set post docker install facts
  17. openshift_facts:
  18. role: "{{ item.role }}"
  19. local_facts: "{{ item.local_facts }}"
  20. with_items:
  21. - role: docker
  22. local_facts:
  23. openshift_image_tag: "{{ l_image_tag }}"
  24. openshift_version: "{{ l_image_tag if l_image_tag is defined else '' | oo_image_tag_to_rpm_version }}"
  25. when: openshift.common.is_containerized | bool