summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node_upgrade/tasks
diff options
context:
space:
mode:
authorJan Chaloupka <jchaloup@redhat.com>2017-07-27 15:56:18 +0200
committerJan Chaloupka <jchaloup@redhat.com>2017-07-27 17:08:53 +0200
commit78abbe021170aaa9b463ba177d78654a7c5d42d5 (patch)
treef7464b719e8d24b681760fb51c1c49c81c4a8876 /roles/openshift_node_upgrade/tasks
parent7a2eab51e45a7722f3eb51f96bd560e77725bc0b (diff)
downloadopenshift-78abbe021170aaa9b463ba177d78654a7c5d42d5.tar.gz
openshift-78abbe021170aaa9b463ba177d78654a7c5d42d5.tar.bz2
openshift-78abbe021170aaa9b463ba177d78654a7c5d42d5.tar.xz
openshift-78abbe021170aaa9b463ba177d78654a7c5d42d5.zip
backport 'Add systemctl daemon-reload handler to openshift_node' #4403 to openshift_node_upgrade
Diffstat (limited to 'roles/openshift_node_upgrade/tasks')
-rw-r--r--roles/openshift_node_upgrade/tasks/systemd_units.yml19
1 files changed, 9 insertions, 10 deletions
diff --git a/roles/openshift_node_upgrade/tasks/systemd_units.yml b/roles/openshift_node_upgrade/tasks/systemd_units.yml
index e8f017445..9b3805eea 100644
--- a/roles/openshift_node_upgrade/tasks/systemd_units.yml
+++ b/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