diff options
author | Dan Yocum <dyocum@redhat.com> | 2018-01-26 15:39:50 -0500 |
---|---|---|
committer | Dan Yocum <dyocum@redhat.com> | 2018-01-26 15:39:50 -0500 |
commit | 7dceb6260a333e29c922dad8613ae6a0946fa07b (patch) | |
tree | 1c7c40a6c68e0668af2e2a5d0b865a4ef6af371d /playbooks/init | |
parent | 501e7897b7becb1e5a5c7875b40675d1e7296ed7 (diff) | |
parent | 13e73c31a827d6fca810e120a7b3b6573b2eeb4b (diff) | |
download | openshift-7dceb6260a333e29c922dad8613ae6a0946fa07b.tar.gz openshift-7dceb6260a333e29c922dad8613ae6a0946fa07b.tar.bz2 openshift-7dceb6260a333e29c922dad8613ae6a0946fa07b.tar.xz openshift-7dceb6260a333e29c922dad8613ae6a0946fa07b.zip |
Merge branch 'master' of github.com:openshift/openshift-ansible into rm_origin-components
Diffstat (limited to 'playbooks/init')
-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)) |