summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorDevan Goodwin <dgoodwin@redhat.com>2016-10-12 13:00:56 -0300
committerDevan Goodwin <dgoodwin@redhat.com>2016-10-12 15:01:05 -0300
commit245fef16573757b6e691c448075d8564f5d569f4 (patch)
tree0f06b3d698384496b1182129cc4ada8cb8de1c93 /playbooks
parente30fdf9f1c3e5b9655b56a41c3691a61fdc775aa (diff)
downloadopenshift-245fef16573757b6e691c448075d8564f5d569f4.tar.gz
openshift-245fef16573757b6e691c448075d8564f5d569f4.tar.bz2
openshift-245fef16573757b6e691c448075d8564f5d569f4.tar.xz
openshift-245fef16573757b6e691c448075d8564f5d569f4.zip
Stop restarting node after upgrading master rpms.
This looks to be causing a customer issue where some HA upgrades fail, due to a missing EgressNetworkPolicy API. We update master rpms, we don't restart services yet, but then restart node service which tries to talk to an API that does not yet exist. (pending restart) Restarting node here is very out of place and appears to not be required.
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/common/openshift-cluster/upgrades/rpm_upgrade.yml3
1 files changed, 0 insertions, 3 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/rpm_upgrade.yml b/playbooks/common/openshift-cluster/upgrades/rpm_upgrade.yml
index f5e4d807e..af77f140f 100644
--- a/playbooks/common/openshift-cluster/upgrades/rpm_upgrade.yml
+++ b/playbooks/common/openshift-cluster/upgrades/rpm_upgrade.yml
@@ -5,6 +5,3 @@
- name: Ensure python-yaml present for config upgrade
action: "{{ ansible_pkg_mgr }} name=PyYAML state=present"
when: not openshift.common.is_atomic | bool
-
-- name: Restart node service
- service: name="{{ openshift.common.service_type }}-node" state=restarted