main.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. - set_fact:
  6. is_containerized: "{{ openshift.common.is_containerized | default(False) | bool }}"
  7. # Does the host already have an image tag fact, used to determine if it's a new node
  8. # in non-upgrade scenarios:
  9. has_image_tag_fact: "{{ hostvars[inventory_hostname].openshift.docker.openshift_image_tag is defined }}"
  10. - debug: var=openshift_image_tag
  11. - debug: var=openshift_release
  12. - name: Set version when containerized
  13. command: >
  14. docker run --rm {{ openshift.common.cli_image }} version
  15. register: cli_image_version
  16. when: is_containerized | bool and openshift_image_tag is not defined and (upgrading | bool or not has_image_tag_fact | bool)
  17. - debug: var=cli_image_version
  18. # Use the pre-existing image tag from system facts if present, and we're not upgrading.
  19. # Ignores explicit openshift_image_tag if it's in the inventory, as this isn't an upgrade.
  20. - set_fact:
  21. l_image_tag: "{{ hostvars[inventory_hostname].openshift.docker.openshift_image_tag }}"
  22. when: is_containerized | bool and not upgrading | bool and has_image_tag_fact | bool
  23. - set_fact:
  24. l_image_tag: "{{ cli_image_version.stdout_lines[0].split(' ')[1].split('-')[0:2] | join('-') if openshift.common.deployment_type == 'origin' else
  25. cli_image_version.stdout_lines[0].split(' ')[1].split('-')[0] }}"
  26. when: is_containerized | bool and openshift_image_tag is not defined and (upgrading | bool or not has_image_tag_fact | bool)
  27. - set_fact:
  28. l_image_tag: "{{ openshift_image_tag }}"
  29. when: is_containerized | bool and openshift_image_tag is defined and (upgrading | bool or not has_image_tag_fact | bool)
  30. - name: Set post docker install facts
  31. openshift_facts:
  32. role: "{{ item.role }}"
  33. local_facts: "{{ item.local_facts }}"
  34. with_items:
  35. - role: docker
  36. local_facts:
  37. openshift_image_tag: "{{ l_image_tag | default(None) }}"
  38. openshift_version: "{{ l_image_tag.split('-')[0] | oo_image_tag_to_rpm_version if l_image_tag is defined else '' }}"
  39. when: is_containerized | bool