Browse Source

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.
Devan Goodwin 8 years ago
parent
commit
245fef1657
1 changed files with 0 additions and 3 deletions
  1. 0 3
      playbooks/common/openshift-cluster/upgrades/rpm_upgrade.yml

+ 0 - 3
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