containerized_node_upgrade.yml 630 B

1234567891011121314
  1. ---
  2. # This is a hack to allow us to use systemd_units.yml, but skip the handlers which
  3. # restart services. We will unconditionally restart all containerized services
  4. # because we have to unconditionally restart Docker:
  5. - set_fact:
  6. skip_node_svc_handlers: True
  7. - name: Update systemd units
  8. include: ../../../../roles/openshift_node/tasks/systemd_units.yml openshift_version={{ openshift_image_tag }}
  9. # This is a no-op because of skip_node_svc_handlers, but lets us trigger it before end of
  10. # play when the node has already been marked schedulable again. (this would look strange
  11. # in logs otherwise)
  12. - meta: flush_handlers