Browse Source

Fixing non-HA master restart conditional

Brenton Leanhardt 9 years ago
parent
commit
5c7b510d2a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_master/handlers/main.yml

+ 1 - 1
roles/openshift_master/handlers/main.yml

@@ -1,7 +1,7 @@
 ---
 - name: restart master
   service: name={{ openshift.common.service_type }}-master state=restarted
-  when: (openshift.master.ha is defined and not openshift.master.ha | bool) and (not (master_service_status_changed | default(false) | bool))
+  when: (openshift.master.ha is not defined or not openshift.master.ha | bool) and (not (master_service_status_changed | default(false) | bool))
   notify: Verify API Server
 
 - name: restart master api