Browse Source

backport 'Add systemctl daemon-reload handler to openshift_node' #4403 to openshift_node_upgrade

Jan Chaloupka 7 years ago
parent
commit
78abbe0211

+ 5 - 0
roles/openshift_node_upgrade/handlers/main.yml

@@ -29,3 +29,8 @@
   when:
   - (not skip_node_svc_handlers | default(False) | bool)
   - not (node_service_status_changed | default(false) | bool)
+
+# TODO(jchaloup): once it is verified the systemd module works as expected
+# switch to it: http://docs.ansible.com/ansible/latest/systemd_module.html
+- name: reload systemd units
+  command: systemctl daemon-reload

+ 9 - 10
roles/openshift_node_upgrade/tasks/systemd_units.yml

@@ -22,23 +22,27 @@
   template:
     dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node-dep.service"
     src: openshift.docker.node.dep.service
-  register: install_node_dep_result
   when: openshift.common.is_containerized | bool
+  notify:
+  - reload systemd units
+  - restart node
 
 - name: Install Node docker service file
   template:
     dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
     src: openshift.docker.node.service
-  register: install_node_result
   when: openshift.common.is_containerized | bool
+  notify:
+  - reload systemd units
+  - restart node
 
 - name: Create the openvswitch service env file
   template:
     src: openvswitch.sysconfig.j2
     dest: /etc/sysconfig/openvswitch
   when: openshift.common.is_containerized | bool
-  register: install_ovs_sysconfig
   notify:
+  - reload systemd units
   - restart openvswitch
 
 # May be a temporary workaround.
@@ -52,8 +56,8 @@
     dest: "/etc/systemd/system/openvswitch.service.d/01-avoid-oom.conf"
     src: openvswitch-avoid-oom.conf
   when: openshift.common.use_openshift_sdn | default(true) | bool
-  register: install_oom_fix_result
   notify:
+  - reload systemd units
   - restart openvswitch
 
 - name: Install OpenvSwitch docker service file
@@ -62,6 +66,7 @@
     src: openvswitch.docker.service
   when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | default(true) | bool
   notify:
+  - reload systemd units
   - restart openvswitch
 
 - name: Configure Node settings
@@ -96,9 +101,3 @@
   when: ('http_proxy' in openshift.common and openshift.common.http_proxy != '')
   notify:
   - restart node
-
-- name: Reload systemd units
-  command: systemctl daemon-reload
-  when: (openshift.common.is_containerized | bool and (install_node_result | changed or install_ovs_sysconfig | changed or install_node_dep_result | changed)) or install_oom_fix_result | changed
-  notify:
-  - restart node