main.yml 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_release: "{{ openshift_release[1:] }}"
  14. when: openshift_release is defined and openshift_release[0] == 'v'
  15. - set_fact:
  16. openshift_release: "{{ openshift_release | string }}"
  17. when: openshift_release is defined
  18. - set_fact:
  19. openshift_image_tag: "{{ 'v' + openshift_image_tag }}"
  20. when: openshift_image_tag is defined and openshift_image_tag[0] != 'v'
  21. - set_fact:
  22. openshift_pkg_version: "{{ '-' + openshift_pkg_version }}"
  23. when: openshift_pkg_version is defined and openshift_pkg_version[0] != '-'
  24. # Make sure we copy this to a fact if given a var:
  25. - set_fact:
  26. openshift_version: "{{ openshift_version | string }}"
  27. when: openshift_version is defined
  28. # Protect the installed version by default unless explicitly told not to, or given an
  29. # openshift_version already.
  30. - name: Use openshift.common.version fact as version to configure if already installed
  31. set_fact:
  32. openshift_version: "{{ openshift.common.version }}"
  33. when: openshift.common.version is defined and openshift_version is not defined and openshift_protect_installed_version | bool
  34. - name: Set openshift_version for rpm installation
  35. include: set_version_rpm.yml
  36. when: not is_containerized | bool
  37. - name: Set openshift_version for containerized installation
  38. include: set_version_containerized.yml
  39. when: is_containerized | bool
  40. # At this point we know openshift_version is set appropriately. Now we set
  41. # openshift_image_tag and openshift_pkg_version, so all roles can always assume
  42. # each of this variables *will* be set correctly and can use them per their
  43. # intended purpose.
  44. - set_fact:
  45. openshift_image_tag: v{{ openshift_version }}
  46. when: openshift_image_tag is not defined
  47. - set_fact:
  48. openshift_pkg_version: -{{ openshift_version }}
  49. when: openshift_pkg_version is not defined
  50. - fail:
  51. msg: openshift_version role was unable to set openshift_version
  52. when: openshift_version is not defined
  53. - fail:
  54. msg: openshift_version role was unable to set openshift_image_tag
  55. when: openshift_image_tag is not defined
  56. - fail:
  57. msg: openshift_version role was unable to set openshift_pkg_version
  58. when: openshift_pkg_version is not defined
  59. - fail:
  60. msg: "No OpenShift version available, please ensure your systems are fully registered and have access to appropriate yum repositories."
  61. when: not is_containerized | bool and openshift_version == '0.0'
  62. # We can't map an openshift_release to full rpm version like we can with containers, make sure
  63. # the rpm version we looked up matches the release requested and error out if not.
  64. - fail:
  65. 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."
  66. when: not is_containerized | bool and openshift_release is defined and not openshift_version.startswith(openshift_release) | bool
  67. # The end result of these three variables is quite important so make sure they are displayed and logged:
  68. - debug: var=openshift_release
  69. - debug: var=openshift_image_tag
  70. - debug: var=openshift_pkg_version