Browse Source

Merge pull request #7190 from sdodson/etcd-v3-block

Link to etcd v3 migration docs rather than suggesting dangerous things
Scott Dodson 7 years ago
parent
commit
4453375191

+ 1 - 1
playbooks/common/openshift-cluster/upgrades/pre/verify_cluster.yml

@@ -55,7 +55,7 @@
     register: _storage_backend
 
   - fail:
-      msg: "Storage backend in /etc/origin/master/master-config.yaml must be set to 'etcd3' before the upgrade can continue"
+      msg: "The cluster must be migrated to etcd v3 prior to upgrading to 3.7. Please see https://docs.openshift.com/container-platform/3.7/install_config/upgrading/migrating_etcd.html"
     when:
     # assuming the master-config.yml is properly configured, i.e. the value is a list
     - _storage_backend.result | default([], true) | length == 0 or _storage_backend.result[0] != "etcd3"