From 48861efef6dab6bde2d540ffb362f57f8650b6ba Mon Sep 17 00:00:00 2001 From: Samuel Munilla Date: Tue, 1 Nov 2016 11:17:18 -0400 Subject: Update installation summary for etcd members We have changed how we assign etcd members in the quick installer. This updates our messaging to match those changes. Fixes Bug 1383961 Fixes Bug 1389649 --- utils/src/ooinstall/oo_config.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'utils/src/ooinstall/oo_config.py') diff --git a/utils/src/ooinstall/oo_config.py b/utils/src/ooinstall/oo_config.py index e6bff7133..64eb340f3 100644 --- a/utils/src/ooinstall/oo_config.py +++ b/utils/src/ooinstall/oo_config.py @@ -120,6 +120,10 @@ class Host(object): def is_storage(self): return 'storage' in self.roles + def is_etcd(self): + """ Does this host have the etcd role """ + return 'etcd' in self.roles + def is_etcd_member(self, all_hosts): """ Will this host be a member of a standalone etcd cluster. """ if not self.is_master(): -- cgit v1.2.3