Browse Source

Merge pull request #8781 from soltysh/drop_confirm

Drop --confirm from migrate storage invocation
OpenShift Merge Robot 6 years ago
parent
commit
ad5b7fae59
1 changed files with 2 additions and 2 deletions
  1. 2 2
      playbooks/openshift-master/private/upgrade.yml

+ 2 - 2
playbooks/openshift-master/private/upgrade.yml

@@ -67,7 +67,7 @@
   - name: Upgrade all storage
     command: >
       {{ openshift_client_binary }} adm --config={{ openshift.common.config_base }}/master/admin.kubeconfig
-      migrate storage --include=* --confirm
+      migrate storage --include=*
     register: l_pb_upgrade_control_plane_pre_upgrade_storage
     when: openshift_upgrade_pre_storage_migration_enabled | default(true) | bool
     until: l_pb_upgrade_control_plane_pre_upgrade_storage.rc == 0
@@ -206,7 +206,7 @@
   - name: Migrate storage post policy reconciliation
     command: >
       {{ openshift_client_binary }} adm --config={{ openshift.common.config_base }}/master/admin.kubeconfig
-      migrate storage --include=* --confirm
+      migrate storage --include=*
     run_once: true
     register: l_pb_upgrade_control_plane_post_upgrade_storage
     when: openshift_upgrade_post_storage_migration_enabled | default(true) | bool