main.yml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. is_atomic: "{{ openshift.common.is_atomic | default(False) | bool }}"
  6. - name: Install the base package for versioning
  7. package:
  8. name: "{{ openshift.common.service_type }}{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }}"
  9. state: present
  10. when: not is_containerized | bool
  11. # Block attempts to install origin without specifying some kind of version information.
  12. # This is because the latest tags for origin are usually alpha builds, which should not
  13. # be used by default. Users must indicate what they want.
  14. - name: Abort when we cannot safely guess what Origin image version the user wanted
  15. fail:
  16. msg: |-
  17. To install a containerized Origin release, you must set openshift_release or
  18. openshift_image_tag in your inventory to specify which version of the OpenShift
  19. component images to use. You may want the latest (usually alpha) releases or
  20. a more stable release. (Suggestion: add openshift_release="x.y" to inventory.)
  21. when:
  22. - is_containerized | bool
  23. - openshift.common.deployment_type == 'origin'
  24. - openshift_release is not defined
  25. - openshift_image_tag is not defined
  26. # Normalize some values that we need in a certain format that might be confusing:
  27. - set_fact:
  28. openshift_release: "{{ openshift_release[1:] }}"
  29. when:
  30. - openshift_release is defined
  31. - openshift_release[0] == 'v'
  32. - set_fact:
  33. openshift_release: "{{ openshift_release | string }}"
  34. when:
  35. - openshift_release is defined
  36. # Verify that the image tag is in a valid format
  37. - when:
  38. - openshift_image_tag is defined
  39. - openshift_image_tag != "latest"
  40. block:
  41. # Verifies that when the deployment type is origin the version:
  42. # - starts with a v
  43. # - Has 3 integers seperated by dots
  44. # It also allows for optional trailing data which:
  45. # - must start with a dash
  46. # - may contain numbers, letters, dashes and dots.
  47. - name: (Origin) Verify openshift_image_tag is valid
  48. when: openshift.common.deployment_type == 'origin'
  49. assert:
  50. that:
  51. - "{{ openshift_image_tag|match('(^v?\\d+\\.\\d+\\.\\d+(-[\\w\\-\\.]*)?$)') }}"
  52. msg: |-
  53. openshift_image_tag must be in the format v#.#.#[-optional.#]. Examples: v1.2.3, v3.5.1-alpha.1
  54. You specified openshift_image_tag={{ openshift_image_tag }}
  55. # Verifies that when the deployment type is openshift-enterprise the version:
  56. # - starts with a v
  57. # - Has at least 2 integers seperated by dots
  58. # It also allows for optional trailing data which:
  59. # - must start with a dash
  60. # - may contain numbers
  61. # - may containe dots (https://github.com/openshift/openshift-ansible/issues/5192)
  62. #
  63. - name: (Enterprise) Verify openshift_image_tag is valid
  64. when: openshift.common.deployment_type == 'openshift-enterprise'
  65. assert:
  66. that:
  67. - "{{ openshift_image_tag|match('(^v\\d+\\.\\d+(\\.\\d+)*(-\\d+(\\.\\d+)*)?$)') }}"
  68. msg: |-
  69. openshift_image_tag must be in the format v#.#[.#[.#]]. Examples: v1.2, v3.4.1, v3.5.1.3,
  70. v3.5.1.3.4, v1.2-1, v1.2.3-4, v1.2.3-4.5, v1.2.3-4.5.6
  71. You specified openshift_image_tag={{ openshift_image_tag }}
  72. # Make sure we copy this to a fact if given a var:
  73. - set_fact:
  74. openshift_version: "{{ openshift_version | string }}"
  75. when: openshift_version is defined
  76. # Protect the installed version by default unless explicitly told not to, or given an
  77. # openshift_version already.
  78. - name: Use openshift.common.version fact as version to configure if already installed
  79. set_fact:
  80. openshift_version: "{{ openshift.common.version }}"
  81. when:
  82. - openshift.common.version is defined
  83. - openshift_version is not defined or openshift_version == ""
  84. - openshift_protect_installed_version | bool
  85. # The rest of these tasks should only execute on
  86. # masters and nodes as we can verify they have subscriptions
  87. - when:
  88. - inventory_hostname in groups['oo_masters_to_config'] or inventory_hostname in groups['oo_nodes_to_config']
  89. block:
  90. - name: Set openshift_version for rpm installation
  91. include: set_version_rpm.yml
  92. when: not is_containerized | bool
  93. - name: Set openshift_version for containerized installation
  94. include: set_version_containerized.yml
  95. when: is_containerized | bool
  96. - block:
  97. - name: Get available {{ openshift.common.service_type}} version
  98. repoquery:
  99. name: "{{ openshift.common.service_type}}"
  100. ignore_excluders: true
  101. register: rpm_results
  102. - fail:
  103. msg: "Package {{ openshift.common.service_type}} not found"
  104. when: not rpm_results.results.package_found
  105. - set_fact:
  106. openshift_rpm_version: "{{ rpm_results.results.versions.available_versions.0 | default('0.0', True) }}"
  107. - name: Fail if rpm version and docker image version are different
  108. fail:
  109. msg: "OCP rpm version {{ openshift_rpm_version }} is different from OCP image version {{ openshift_version }}"
  110. # Both versions have the same string representation
  111. when:
  112. - openshift_rpm_version != openshift_version
  113. # if openshift_pkg_version or openshift_image_tag is defined, user gives a permission the rpm and docker image versions can differ
  114. - openshift_pkg_version is not defined
  115. - openshift_image_tag is not defined
  116. when:
  117. - is_containerized | bool
  118. - not is_atomic | bool
  119. # Warn if the user has provided an openshift_image_tag but is not doing a containerized install
  120. # NOTE: This will need to be modified/removed for future container + rpm installations work.
  121. - name: Warn if openshift_image_tag is defined when not doing a containerized install
  122. debug:
  123. msg: >
  124. openshift_image_tag is used for containerized installs. If you are trying to
  125. specify an image for a non-container install see oreg_url or oreg_url_master or oreg_url_node.
  126. when:
  127. - not is_containerized | bool
  128. - openshift_image_tag is defined
  129. # At this point we know openshift_version is set appropriately. Now we set
  130. # openshift_image_tag and openshift_pkg_version, so all roles can always assume
  131. # each of this variables *will* be set correctly and can use them per their
  132. # intended purpose.
  133. - block:
  134. - debug:
  135. msg: "openshift_image_tag was not defined. Falling back to v{{ openshift_version }}"
  136. - set_fact:
  137. openshift_image_tag: v{{ openshift_version }}
  138. when: openshift_image_tag is not defined
  139. - block:
  140. - debug:
  141. msg: "openshift_pkg_version was not defined. Falling back to -{{ openshift_version }}"
  142. - set_fact:
  143. openshift_pkg_version: -{{ openshift_version }}
  144. when: openshift_pkg_version is not defined
  145. - fail:
  146. msg: openshift_version role was unable to set openshift_version
  147. name: Abort if openshift_version was not set
  148. when: openshift_version is not defined
  149. - fail:
  150. msg: openshift_version role was unable to set openshift_image_tag
  151. name: Abort if openshift_image_tag was not set
  152. when: openshift_image_tag is not defined
  153. - fail:
  154. msg: openshift_version role was unable to set openshift_pkg_version
  155. name: Abort if openshift_pkg_version was not set
  156. when: openshift_pkg_version is not defined
  157. - fail:
  158. msg: "No OpenShift version available; please ensure your systems are fully registered and have access to appropriate yum repositories."
  159. name: Abort if openshift_pkg_version was not set
  160. when:
  161. - not is_containerized | bool
  162. - openshift_version == '0.0'
  163. # We can't map an openshift_release to full rpm version like we can with containers; make sure
  164. # the rpm version we looked up matches the release requested and error out if not.
  165. - name: For an RPM install, abort when the release requested does not match the available version.
  166. when:
  167. - not is_containerized | bool
  168. - openshift_release is defined
  169. assert:
  170. that:
  171. - openshift_version.startswith(openshift_release) | bool
  172. msg: |-
  173. You requested openshift_release {{ openshift_release }}, which is not matched by
  174. the latest OpenShift RPM we detected as {{ openshift.common.service_type }}-{{ openshift_version }}
  175. on host {{ inventory_hostname }}.
  176. We will only install the latest RPMs, so please ensure you are getting the release
  177. you expect. You may need to adjust your Ansible inventory, modify the repositories
  178. available on the host, or run the appropriate OpenShift upgrade playbook.
  179. # The end result of these three variables is quite important so make sure they are displayed and logged:
  180. - debug: var=openshift_release
  181. - debug: var=openshift_image_tag
  182. - debug: var=openshift_pkg_version