diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-10-31 10:30:18 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2016-11-14 08:50:43 -0500 |
commit | a5f4561d8cdfd974705105275f718cee9bb249ad (patch) | |
tree | 99a577131a9309c482feb10502cbcec4515bb81f /playbooks/byo | |
parent | 00d007565aff754cb282631f89de93c1c9cc0a46 (diff) | |
download | openshift-a5f4561d8cdfd974705105275f718cee9bb249ad.tar.gz openshift-a5f4561d8cdfd974705105275f718cee9bb249ad.tar.bz2 openshift-a5f4561d8cdfd974705105275f718cee9bb249ad.tar.xz openshift-a5f4561d8cdfd974705105275f718cee9bb249ad.zip |
Add etcd upgrade for RHEL and Fedora
On Fedora we just blindly upgrade to the latest.
On RHEL we do stepwise upgrades 2.0,2.1,2.2,2.3,3.0
Diffstat (limited to 'playbooks/byo')
-rw-r--r-- | playbooks/byo/openshift-cluster/upgrades/upgrade_etcd.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/playbooks/byo/openshift-cluster/upgrades/upgrade_etcd.yml b/playbooks/byo/openshift-cluster/upgrades/upgrade_etcd.yml new file mode 100644 index 000000000..c25f96212 --- /dev/null +++ b/playbooks/byo/openshift-cluster/upgrades/upgrade_etcd.yml @@ -0,0 +1,26 @@ +--- +- include: ../../../common/openshift-cluster/verify_ansible_version.yml + +- name: Create initial host groups for localhost + hosts: localhost + connection: local + become: no + gather_facts: no + tags: + - always + tasks: + - include_vars: ../cluster_hosts.yml + - add_host: + name: "{{ item }}" + groups: l_oo_all_hosts + with_items: "{{ g_all_hosts | default([]) }}" + +- name: Create initial host groups for all hosts + hosts: l_oo_all_hosts + gather_facts: no + tags: + - always + tasks: + - include_vars: ../cluster_hosts.yml + +- include: ../../../common/openshift-cluster/upgrades/etcd/main.yml |