summaryrefslogtreecommitdiffstats
path: root/roles/etcd
diff options
context:
space:
mode:
authorVadim Rutkovsky <vrutkovs@redhat.com>2018-01-18 17:23:27 +0100
committerVadim Rutkovsky <vrutkovs@redhat.com>2018-01-18 17:23:27 +0100
commit1ff834e55ac7cc8327d0a1798bec978df2f185aa (patch)
tree9feb2234f337f3da335bda0e5d92800e7a23d15a /roles/etcd
parent44f9ab2767cd7390c53b5a4bc0bf424094ae5956 (diff)
downloadopenshift-1ff834e55ac7cc8327d0a1798bec978df2f185aa.tar.gz
openshift-1ff834e55ac7cc8327d0a1798bec978df2f185aa.tar.bz2
openshift-1ff834e55ac7cc8327d0a1798bec978df2f185aa.tar.xz
openshift-1ff834e55ac7cc8327d0a1798bec978df2f185aa.zip
Use openshift_is_containerized instead of openshift_is_atomic when installing etcd
This allows non-Atomic hosts to be used to install containerized etcd
Diffstat (limited to 'roles/etcd')
-rw-r--r--roles/etcd/tasks/auxiliary/drop_etcdctl.yml2
1 files changed, 1 insertions, 1 deletions
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