diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-01-13 13:57:20 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-01-13 13:57:20 -0500 |
commit | 20142ed2bc5284db68a1953183a84136a2011d55 (patch) | |
tree | 347110e2fd2de441340a2e9f145ef8121356d170 /playbooks/byo | |
parent | feaf2d4a28992c3a6b3a8086830ce710c3c6c7e0 (diff) | |
parent | 4d25e4d0b375e953e4125f7247283ef8235d67c2 (diff) | |
download | openshift-20142ed2bc5284db68a1953183a84136a2011d55.tar.gz openshift-20142ed2bc5284db68a1953183a84136a2011d55.tar.bz2 openshift-20142ed2bc5284db68a1953183a84136a2011d55.tar.xz openshift-20142ed2bc5284db68a1953183a84136a2011d55.zip |
Merge pull request #1166 from brenton/311upgrade
3.1.1 upgrade
Diffstat (limited to 'playbooks/byo')
-rw-r--r-- | playbooks/byo/openshift-cluster/upgrades/v3_1_minor/README.md | 17 | ||||
-rw-r--r-- | playbooks/byo/openshift-cluster/upgrades/v3_1_minor/upgrade.yml | 14 |
2 files changed, 31 insertions, 0 deletions
diff --git a/playbooks/byo/openshift-cluster/upgrades/v3_1_minor/README.md b/playbooks/byo/openshift-cluster/upgrades/v3_1_minor/README.md new file mode 100644 index 000000000..b230835c3 --- /dev/null +++ b/playbooks/byo/openshift-cluster/upgrades/v3_1_minor/README.md @@ -0,0 +1,17 @@ +# v3.1 minor upgrade playbook +This upgrade will preserve all locally made configuration modifications to the +Masters and Nodes. + +## Overview +This playbook is available as a technical preview. It currently performs the +following steps. + + * Upgrade and restart master services + * Upgrade and restart node services + * Applies the latest cluster policies + * Updates the default router if one exists + * Updates the default registry if one exists + * Updates image streams and quickstarts + +## Usage +ansible-playbook -i ~/ansible-inventory openshift-ansible/playbooks/byo/openshift-cluster/upgrades/v3_1_minor/upgrade.yml diff --git a/playbooks/byo/openshift-cluster/upgrades/v3_1_minor/upgrade.yml b/playbooks/byo/openshift-cluster/upgrades/v3_1_minor/upgrade.yml new file mode 100644 index 000000000..20fa9b10f --- /dev/null +++ b/playbooks/byo/openshift-cluster/upgrades/v3_1_minor/upgrade.yml @@ -0,0 +1,14 @@ +--- +- include: ../../../../common/openshift-cluster/evaluate_groups.yml + vars: + g_etcd_hosts: "{{ groups.etcd | default([]) }}" + g_master_hosts: "{{ groups.masters | default([]) }}" + g_nfs_hosts: "{{ groups.nfs | default([]) }}" + g_node_hosts: "{{ groups.nodes | default([]) }}" + g_lb_hosts: "{{ groups.lb | default([]) }}" + openshift_cluster_id: "{{ cluster_id | default('default') }}" + openshift_deployment_type: "{{ deployment_type }}" +- include: ../../../../common/openshift-cluster/upgrades/v3_1_minor/pre.yml +- include: ../../../../common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml +- include: ../../../openshift-master/restart.yml +- include: ../../../../common/openshift-cluster/upgrades/v3_1_minor/post.yml |