Przeglądaj źródła

Block attempts to install origin without specifying any release info.

Devan Goodwin 8 lat temu
rodzic
commit
e60b8976ef
1 zmienionych plików z 7 dodań i 0 usunięć
  1. 7 0
      roles/openshift_version/tasks/main.yml

+ 7 - 0
roles/openshift_version/tasks/main.yml

@@ -1,6 +1,13 @@
 ---
 # Determine the openshift_version to configure if none has been specified or set previously.
 
+# Block attempts to install origin without specifying some kind of version information.
+# This is because the latest tags for origin are usually alpha builds, which should not
+# be used by default. Users must indicate what they want.
+- fail:
+    msg: "Must specify openshift_release, openshift_image_tag, or openshift_pkg_version in inventory to install origin. (suggestion: add openshift_release=\"1.2\" to inventory)"
+  when: openshift.common.deployment_type == 'origin' and openshift_release is not defined and openshift_pkg_version is not defined and openshift_image_tag is not defined
+
 - set_fact:
     is_containerized: "{{ openshift.common.is_containerized | default(False) | bool }}"