diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-06-21 15:45:20 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2017-06-22 12:39:51 -0400 |
commit | c4e546e0f17cf7972fdac01d23cbb6765880a25f (patch) | |
tree | 28457dc656dafcdda653fa8e832beeb7f07487d4 /playbooks/common/openshift-cluster/upgrades | |
parent | 6c0760068922d06ca161d833c1e9dc442ab8960e (diff) | |
download | openshift-c4e546e0f17cf7972fdac01d23cbb6765880a25f.tar.gz openshift-c4e546e0f17cf7972fdac01d23cbb6765880a25f.tar.bz2 openshift-c4e546e0f17cf7972fdac01d23cbb6765880a25f.tar.xz openshift-c4e546e0f17cf7972fdac01d23cbb6765880a25f.zip |
Fixes to storage migration
Diffstat (limited to 'playbooks/common/openshift-cluster/upgrades')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml index 6738ce11f..b420c25d4 100644 --- a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml +++ b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml @@ -5,13 +5,13 @@ # oc adm migrate storage should be run prior to etcd v3 upgrade # See: https://github.com/openshift/origin/pull/14625#issuecomment-308467060 -- name: Pre master upgrade - Upgrade job storage +- name: Pre master upgrade - Upgrade all storage hosts: oo_first_master tasks: - - name: Upgrade job storage + - name: Upgrade all storage command: > {{ openshift.common.client_binary }} adm --config={{ openshift.common.config_base }}/master/admin.kubeconfig - migrate storage --include=jobs --confirm + migrate storage --include=* --confirm # If facts cache were for some reason deleted, this fact may not be set, and if not set # it will always default to true. This causes problems for the etcd data dir fact detection @@ -143,13 +143,13 @@ - set_fact: master_update_complete: True -- name: Post master upgrade - Upgrade job storage +- name: Post master upgrade - Upgrade clusterpolicies storage hosts: oo_first_master tasks: - - name: Upgrade job storage + - name: Upgrade clusterpolicies storage command: > {{ openshift.common.client_binary }} adm --config={{ openshift.common.config_base }}/master/admin.kubeconfig - migrate storage --include=jobs --confirm + migrate storage --include=clusterpolicies --confirm ############################################################################## # Gate on master update complete @@ -230,6 +230,12 @@ - reconcile_scc_result.rc == 0 run_once: true + - name: Upgrade job storage + command: > + {{ openshift.common.client_binary }} adm --config={{ openshift.common.config_base }}/master/admin.kubeconfig + migrate storage --include=* --confirm + run_once: true + - set_fact: reconcile_complete: True |