diff options
author | Scott Dodson <sdodson@redhat.com> | 2018-01-25 08:42:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-25 08:42:08 -0500 |
commit | 602fa687a2266dcb351492113654999a02c03faa (patch) | |
tree | 4ec5b040abdb85e9c024255791d03e2f47c452de | |
parent | 4e5ef6d50f31eb51a249c3b4836141030f70b0de (diff) | |
parent | be039d3d89d8869d2463c428e0eda5272702cf66 (diff) | |
download | openshift-602fa687a2266dcb351492113654999a02c03faa.tar.gz openshift-602fa687a2266dcb351492113654999a02c03faa.tar.bz2 openshift-602fa687a2266dcb351492113654999a02c03faa.tar.xz openshift-602fa687a2266dcb351492113654999a02c03faa.zip |
Merge pull request #6858 from mtnbikenc/fix-1530403
[1530403] Improve etcd group error message
-rw-r--r-- | playbooks/init/evaluate_groups.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/playbooks/init/evaluate_groups.yml b/playbooks/init/evaluate_groups.yml index 924ae481a..e8bf1892c 100644 --- a/playbooks/init/evaluate_groups.yml +++ b/playbooks/init/evaluate_groups.yml @@ -45,7 +45,11 @@ - name: Evaluate groups - Fail if no etcd hosts group is defined fail: msg: > - Running etcd as an embedded service is no longer supported. + Running etcd as an embedded service is no longer supported. If this is a + new install please define an 'etcd' group with either one, three or five + hosts. These hosts may be the same hosts as your masters. If this is an + upgrade please see https://docs.openshift.com/container-platform/latest/install_config/upgrading/migrating_embedded_etcd.html + for documentation on how to migrate from embedded to external etcd. when: - g_etcd_hosts | default([]) | length not in [5,3,1] - not (openshift_node_bootstrap | default(False)) |