diff options
author | Adam Miller <maxamillion@fedoraproject.org> | 2016-02-19 16:56:22 -0600 |
---|---|---|
committer | Adam Miller <maxamillion@fedoraproject.org> | 2016-02-22 15:27:09 -0600 |
commit | 903add3f1bdd9951644e6b6f97a98035d4aabb8c (patch) | |
tree | b226091baf8cb7ec7ee54e921220551f235a1932 /roles/etcd | |
parent | dc8938e01202db0464e54becf4812c3191ce2d51 (diff) | |
download | openshift-903add3f1bdd9951644e6b6f97a98035d4aabb8c.tar.gz openshift-903add3f1bdd9951644e6b6f97a98035d4aabb8c.tar.bz2 openshift-903add3f1bdd9951644e6b6f97a98035d4aabb8c.tar.xz openshift-903add3f1bdd9951644e6b6f97a98035d4aabb8c.zip |
remove version requirement from etcd, shouldn't be needed anymore
Diffstat (limited to 'roles/etcd')
-rw-r--r-- | roles/etcd/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/etcd/tasks/main.yml b/roles/etcd/tasks/main.yml index 1e97b047b..e72509c4d 100644 --- a/roles/etcd/tasks/main.yml +++ b/roles/etcd/tasks/main.yml @@ -8,7 +8,7 @@ when: "'ipv4' not in hostvars[inventory_hostname]['ansible_' ~ etcd_interface] or 'address' not in hostvars[inventory_hostname]['ansible_' ~ etcd_interface].ipv4" - name: Install etcd - action: "{{ ansible_pkg_mgr }} name=etcd-2.* state=present" + action: "{{ ansible_pkg_mgr }} name=etcd state=present" when: not openshift.common.is_containerized | bool - name: Pull etcd container |