Browse Source

Merge pull request #2183 from dgoodwin/mismatch-msg

Slight modification to error when using mismatched openshift_release.
Scott Dodson 8 years ago
parent
commit
e56778743a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_version/tasks/main.yml

+ 1 - 1
roles/openshift_version/tasks/main.yml

@@ -76,7 +76,7 @@
 # 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 or specify an exact openshift_pkg_version."
+    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
 
 # The end result of these three variables is quite important so make sure they are displayed and logged: