Browse Source

Merge pull request #7302 from vrutkovs/rolling_restart_mode-fix

Automatic merge from submit-queue.

upgrade: skip restart during double upgrade

This is an additional fix for #7124 - localhost tasks won't be executed during 
3.7 -> 3.8 upgrade, so this task should be skipped as well

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1549058
OpenShift Merge Robot 7 years ago
parent
commit
cf0db55c86
1 changed files with 3 additions and 1 deletions
  1. 3 1
      playbooks/openshift-master/private/validate_restart.yml

+ 3 - 1
playbooks/openshift-master/private/validate_restart.yml

@@ -61,4 +61,6 @@
     - exists.stat.exists and openshift.common.rolling_restart_mode == 'system'
   - set_fact:
       current_host: "{{ exists.stat.exists }}"
-    when: openshift.common.rolling_restart_mode == 'system'
+    when:
+    - "'stat' in exists"
+    - openshift.common.rolling_restart_mode == 'system'