From 1ff834e55ac7cc8327d0a1798bec978df2f185aa Mon Sep 17 00:00:00 2001 From: Vadim Rutkovsky Date: Thu, 18 Jan 2018 17:23:27 +0100 Subject: Use openshift_is_containerized instead of openshift_is_atomic when installing etcd This allows non-Atomic hosts to be used to install containerized etcd --- roles/etcd/tasks/auxiliary/drop_etcdctl.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roles/etcd') diff --git a/roles/etcd/tasks/auxiliary/drop_etcdctl.yml b/roles/etcd/tasks/auxiliary/drop_etcdctl.yml index 881a8c270..cab835e20 100644 --- a/roles/etcd/tasks/auxiliary/drop_etcdctl.yml +++ b/roles/etcd/tasks/auxiliary/drop_etcdctl.yml @@ -1,7 +1,7 @@ --- - name: Install etcd for etcdctl package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present - when: not openshift_is_atomic | bool + when: not openshift_is_containerized | bool register: result until: result is succeeded -- cgit v1.2.1