Browse Source

Merge pull request #5730 from sdodson/restart-controllers

Restart all controllers to force reconfiguration during upgrade
Scott Dodson 7 years ago
parent
commit
8eabfab30f

+ 16 - 0
playbooks/common/openshift-cluster/upgrades/v3_7/upgrade.yml

@@ -119,8 +119,24 @@
   tasks:
   - include: ../cleanup_unused_images.yml
 
+#TODO: Why doesn't this compose using ./upgrade_control_plane rather than
+# ../upgrade_control_plane?
 - include: ../upgrade_control_plane.yml
 
+# All controllers must be stopped at the same time then restarted
+- name: Cycle all controller services to force new leader election mode
+  hosts: oo_etcd_to_config
+  gather_facts: no
+  tasks:
+  - name: Stop {{ openshift.common.service_type }}-master-controllers
+    systemd:
+      name: "{{ openshift.common.service_type }}-master-controllers"
+      state: stopped
+  - name: Start {{ openshift.common.service_type }}-master-controllers
+    systemd:
+      name: "{{ openshift.common.service_type }}-master-controllers"
+      state: started
+
 - include: ../upgrade_nodes.yml
 
 - include: ../post_control_plane.yml

+ 14 - 0
playbooks/common/openshift-cluster/upgrades/v3_7/upgrade_control_plane.yml

@@ -128,4 +128,18 @@
   vars:
     master_config_hook: "v3_7/master_config_upgrade.yml"
 
+# All controllers must be stopped at the same time then restarted
+- name: Cycle all controller services to force new leader election mode
+  hosts: oo_etcd_to_config
+  gather_facts: no
+  tasks:
+  - name: Stop {{ openshift.common.service_type }}-master-controllers
+    systemd:
+      name: "{{ openshift.common.service_type }}-master-controllers"
+      state: stopped
+  - name: Start {{ openshift.common.service_type }}-master-controllers
+    systemd:
+      name: "{{ openshift.common.service_type }}-master-controllers"
+      state: started
+
 - include: ../post_control_plane.yml