diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-12-07 08:25:41 -0500 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2016-12-07 14:35:54 -0500 |
commit | 642de6224c2c3d95a6a240dbc17724317b76b1c7 (patch) | |
tree | 7569f644f974b5b562b8ab69ceb90696f726bbd1 /playbooks/common | |
parent | 308637af4daf979d864592fe05b05c8f3c29f3a3 (diff) | |
download | openshift-642de6224c2c3d95a6a240dbc17724317b76b1c7.tar.gz openshift-642de6224c2c3d95a6a240dbc17724317b76b1c7.tar.bz2 openshift-642de6224c2c3d95a6a240dbc17724317b76b1c7.tar.xz openshift-642de6224c2c3d95a6a240dbc17724317b76b1c7.zip |
etcd_upgrade: Simplify package installation
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/etcd/rhel_tasks.yml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/etcd/rhel_tasks.yml b/playbooks/common/openshift-cluster/upgrades/etcd/rhel_tasks.yml index 8e7dc9d9b..3a972e8ab 100644 --- a/playbooks/common/openshift-cluster/upgrades/etcd/rhel_tasks.yml +++ b/playbooks/common/openshift-cluster/upgrades/etcd/rhel_tasks.yml @@ -2,13 +2,10 @@ - name: Verify cluster is healthy pre-upgrade command: "etcdctl --cert-file /etc/etcd/peer.crt --key-file /etc/etcd/peer.key --ca-file /etc/etcd/ca.crt -C https://{{ openshift.common.hostname }}:2379 cluster-health" -- name: Update etcd package but exclude etcd3 - command: "{{ ansible_pkg_mgr }} install -y etcd-{{ upgrade_version }}\\* --exclude etcd3" - when: upgrade_version | version_compare('3.0','<') - -- name: Update etcd package not excluding etcd3 - command: "{{ ansible_pkg_mgr }} install -y etcd3-{{ upgrade_version }}\\*" - when: not upgrade_version | version_compare('3.0','<') +- name: Update etcd RPM + package: + name: etcd-{{ upgrade_version }}* + state: latest - name: Restart etcd service: |