main.yml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ---
  2. # Determine the openshift_version to configure if none has been specified or set previously.
  3. - set_fact:
  4. is_containerized: "{{ openshift.common.is_containerized | default(False) | bool }}"
  5. # Block attempts to install origin without specifying some kind of version information.
  6. # This is because the latest tags for origin are usually alpha builds, which should not
  7. # be used by default. Users must indicate what they want.
  8. - fail:
  9. msg: "Must specify openshift_release or openshift_image_tag in inventory to install origin. (suggestion: add openshift_release=\"1.2\" to inventory)"
  10. when: is_containerized | bool and openshift.common.deployment_type == 'origin' and openshift_release is not defined and openshift_image_tag is not defined
  11. # Normalize some values that we need in a certain format that might be confusing:
  12. - set_fact:
  13. openshift_image_tag: "{{ 'v' + openshift_image_tag }}"
  14. when: openshift_image_tag is defined and openshift_image_tag[0] != 'v' and openshift_image_tag != 'latest'
  15. - set_fact:
  16. openshift_pkg_version: "{{ '-' + openshift_pkg_version }}"
  17. when: openshift_pkg_version is defined and openshift_pkg_version[0] != '-'
  18. # Make sure we copy this to a fact if given a var:
  19. - set_fact:
  20. openshift_version: "{{ openshift_version | string }}"
  21. when: openshift_version is defined
  22. # Protect the installed version by default unless explicitly told not to, or given an
  23. # openshift_version already.
  24. - name: Use openshift.common.version fact as version to configure if already installed
  25. set_fact:
  26. openshift_version: "{{ openshift.common.version }}"
  27. when: openshift.common.version is defined and openshift_version is not defined and openshift_protect_installed_version | bool
  28. - name: Set openshift_version for rpm installation
  29. include: set_version_rpm.yml
  30. when: not is_containerized | bool
  31. - name: Set openshift_version for containerized installation
  32. include: set_version_containerized.yml
  33. when: is_containerized | bool
  34. # At this point we know openshift_version is set appropriately. Now we set
  35. # openshift_image_tag and openshift_pkg_version, so all roles can always assume
  36. # each of this variables *will* be set correctly and can use them per their
  37. # intended purpose.
  38. - set_fact:
  39. openshift_image_tag: v{{ openshift_version }}
  40. when: openshift_image_tag is not defined
  41. - set_fact:
  42. openshift_pkg_version: -{{ openshift_version }}
  43. when: openshift_pkg_version is not defined
  44. - fail:
  45. msg: openshift_version role was unable to set openshift_version
  46. when: openshift_version is not defined
  47. - fail:
  48. msg: openshift_version role was unable to set openshift_image_tag
  49. when: openshift_image_tag is not defined
  50. - fail:
  51. msg: openshift_version role was unable to set openshift_pkg_version
  52. when: openshift_pkg_version is not defined
  53. - fail:
  54. msg: "No OpenShift version available, please ensure your systems are fully registered and have access to appropriate yum repositories."
  55. when: not is_containerized | bool and openshift_version == '0.0'
  56. # We can't map an openshift_release to full rpm version like we can with containers, make sure
  57. # the rpm version we looked up matches the release requested and error out if not.
  58. - fail:
  59. msg: "Detected OpenShift version {{ openshift_version }} does not match requested openshift_release {{ openshift_release }}. You may need to adjust your yum repositories, inventory, or run the appropriate OpenShift upgrade playbook."
  60. when: not is_containerized | bool and openshift_release is defined and not openshift_version.startswith(openshift_release) | bool
  61. # The end result of these three variables is quite important so make sure they are displayed and logged:
  62. - debug: var=openshift_release
  63. - debug: var=openshift_image_tag
  64. - debug: var=openshift_pkg_version