Browse Source

openshift_sanitize_inventory: Check for required vars

Moved the checks for osm_cluster_network_cidr, osm_host_subnet_length,
openshift_portal_net  from upgrade to openshift_sanitize_inventory
as we now consider it a required variable for install, updrade, or
scale up.

Signed-off-by: Steve Milner <smilner@redhat.com>
Steve Milner 7 years ago
parent
commit
554edfd1b9

+ 0 - 15
playbooks/common/openshift-cluster/upgrades/pre/verify_inventory_vars.yml

@@ -9,21 +9,6 @@
         deployment types
     when: deployment_type not in ['origin','openshift-enterprise', 'online']
 
-  # osm_cluster_network_cidr, osm_host_subnet_length and openshift_portal_net are
-  # required when upgrading to avoid changes that may occur between releases
-  # Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1451023
-  - assert:
-      that:
-      - "osm_cluster_network_cidr is defined"
-      - "osm_host_subnet_length is defined"
-      - "openshift_portal_net is defined"
-      msg: >
-        osm_cluster_network_cidr, osm_host_subnet_length, and openshift_portal_net are required inventory
-        variables when upgrading. These variables should match what is currently used in the cluster. If
-        you don't remember what these values are you can find them in /etc/origin/master/master-config.yaml
-        on a master with the names clusterNetworkCIDR (osm_cluster_network_cidr),
-        hostSubnetLength (osm_host_subnet_length), and serviceNetworkCIDR (openshift_portal_net).
-
   # Error out in situations where the user has older versions specified in their
   # inventory in any of the openshift_release, openshift_image_tag, and
   # openshift_pkg_version variables. These must be removed or updated to proceed

+ 16 - 0
roles/openshift_sanitize_inventory/tasks/main.yml

@@ -12,6 +12,22 @@
       deployment_type is deprecated in favor of openshift_deployment_type.
       Please specify only openshift_deployment_type, or make both the same.
 
+# osm_cluster_network_cidr, osm_host_subnet_length and openshift_portal_net are
+# now required to avoid changes that may occur between releases
+# Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1451023
+- assert:
+    that:
+      - "osm_cluster_network_cidr is defined"
+      - "osm_host_subnet_length is defined"
+      - "openshift_portal_net is defined"
+    msg: >
+      osm_cluster_network_cidr, osm_host_subnet_length, and openshift_portal_net are required inventory
+      variables. If you are upgrading or scaling up these variables should match what is currently used
+      in the cluster. If you don't remember what these values are you can find them in
+      /etc/origin/master/master-config.yaml on a master with the names clusterNetworkCIDR
+      (osm_cluster_network_cidr), hostSubnetLength (osm_host_subnet_length),
+      and serviceNetworkCIDR (openshift_portal_net).
+
 - name: Standardize on latest variable names
   set_fact:
     # goal is to deprecate deployment_type in favor of openshift_deployment_type.