|
@@ -9,16 +9,36 @@
|
|
|
# be used by default. Users must indicate what they want.
|
|
|
- fail:
|
|
|
msg: "Must specify openshift_release or openshift_image_tag in inventory to install origin. (suggestion: add openshift_release=\"1.2\" to inventory)"
|
|
|
- when: is_containerized | bool and openshift.common.deployment_type == 'origin' and openshift_release is not defined and openshift_image_tag is not defined
|
|
|
+ when:
|
|
|
+ - is_containerized | bool
|
|
|
+ - openshift.common.deployment_type == 'origin'
|
|
|
+ - openshift_release is not defined
|
|
|
+ - openshift_image_tag is not defined
|
|
|
|
|
|
# Normalize some values that we need in a certain format that might be confusing:
|
|
|
- set_fact:
|
|
|
+ openshift_release: "{{ openshift_release[1:] }}"
|
|
|
+ when:
|
|
|
+ - openshift_release is defined
|
|
|
+ - openshift_release[0] == 'v'
|
|
|
+
|
|
|
+- set_fact:
|
|
|
+ openshift_release: "{{ openshift_release | string }}"
|
|
|
+ when: openshift_release is defined
|
|
|
+
|
|
|
+# Add a v to the start of the openshift_image_tag if one was not provided
|
|
|
+- set_fact:
|
|
|
openshift_image_tag: "{{ 'v' + openshift_image_tag }}"
|
|
|
- when: openshift_image_tag is defined and openshift_image_tag[0] != 'v' and openshift_image_tag != 'latest'
|
|
|
+ when:
|
|
|
+ - openshift_image_tag is defined
|
|
|
+ - openshift_image_tag[0] != 'v'
|
|
|
+ - openshift_image_tag != 'latest'
|
|
|
|
|
|
- set_fact:
|
|
|
openshift_pkg_version: "{{ '-' + openshift_pkg_version }}"
|
|
|
- when: openshift_pkg_version is defined and openshift_pkg_version[0] != '-'
|
|
|
+ when:
|
|
|
+ - openshift_pkg_version is defined
|
|
|
+ - openshift_pkg_version[0] != '-'
|
|
|
|
|
|
# Make sure we copy this to a fact if given a var:
|
|
|
- set_fact:
|
|
@@ -30,7 +50,10 @@
|
|
|
- name: Use openshift.common.version fact as version to configure if already installed
|
|
|
set_fact:
|
|
|
openshift_version: "{{ openshift.common.version }}"
|
|
|
- when: openshift.common.version is defined and openshift_version is not defined and openshift_protect_installed_version | bool
|
|
|
+ when:
|
|
|
+ - openshift.common.version is defined
|
|
|
+ - openshift_version is not defined
|
|
|
+ - openshift_protect_installed_version | bool
|
|
|
|
|
|
- name: Set openshift_version for rpm installation
|
|
|
include: set_version_rpm.yml
|
|
@@ -67,13 +90,18 @@
|
|
|
|
|
|
- fail:
|
|
|
msg: "No OpenShift version available, please ensure your systems are fully registered and have access to appropriate yum repositories."
|
|
|
- when: not is_containerized | bool and openshift_version == '0.0'
|
|
|
+ when:
|
|
|
+ - not is_containerized | bool
|
|
|
+ - openshift_version == '0.0'
|
|
|
|
|
|
# We can't map an openshift_release to full rpm version like we can with containers, make sure
|
|
|
# the rpm version we looked up matches the release requested and error out if not.
|
|
|
- fail:
|
|
|
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."
|
|
|
- when: not is_containerized | bool and openshift_release is defined and not openshift_version.startswith(openshift_release) | bool
|
|
|
+ when:
|
|
|
+ - not is_containerized | bool
|
|
|
+ - openshift_release is defined
|
|
|
+ - not openshift_version.startswith(openshift_release) | bool
|
|
|
|
|
|
# The end result of these three variables is quite important so make sure they are displayed and logged:
|
|
|
- debug: var=openshift_release
|