stop_services.yml 807 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. - name: Stop node and openvswitch services
  3. service:
  4. name: "{{ item }}"
  5. state: stopped
  6. with_items:
  7. - openvswitch
  8. - "{{ openshift_service_type }}-node"
  9. failed_when: false
  10. - service:
  11. name: docker
  12. state: stopped
  13. register: l_openshift_node_upgrade_docker_stop_result
  14. until: not (l_openshift_node_upgrade_docker_stop_result is failed)
  15. retries: 3
  16. delay: 30
  17. when:
  18. - l_docker_upgrade is defined
  19. - l_docker_upgrade | bool
  20. - name: Stop crio
  21. service:
  22. name: cri-o
  23. state: stopped
  24. when: openshift_use_crio | bool
  25. # TODO: Need to determine if this is needed long term or just 3.9 to 3.10
  26. # Upgrading cri-o, at least from 1.9 to 1.10, requires that all
  27. # pods be stopped
  28. - name: Clean up cri-o pods
  29. script: clean-up-crio-pods.sh
  30. when: openshift_use_crio | bool