main.yml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ---
  2. # input variables:
  3. # - l_docker_upgrade
  4. # - openshift.common.is_atomic
  5. # - node_config_hook
  6. # - openshift_pkg_version
  7. # - openshift.common.is_containerized
  8. # - deployment_type
  9. # - openshift_release
  10. # tasks file for openshift_node_upgrade
  11. - include: docker/upgrade.yml
  12. vars:
  13. # We will restart Docker ourselves after everything is ready:
  14. skip_docker_restart: True
  15. when: l_docker_upgrade is defined and l_docker_upgrade | bool and not openshift.common.is_atomic | bool
  16. - include: "{{ node_config_hook }}"
  17. when: node_config_hook is defined
  18. - include: rpm_upgrade.yml
  19. vars:
  20. component: "node"
  21. openshift_version: "{{ openshift_pkg_version | default('') }}"
  22. when: not openshift.common.is_containerized | bool
  23. - name: Remove obsolete docker-sdn-ovs.conf
  24. file: path=/etc/systemd/system/docker.service.d/docker-sdn-ovs.conf state=absent
  25. when: (deployment_type == 'openshift-enterprise' and openshift_release | version_compare('3.4', '>=')) or (deployment_type == 'origin' and openshift_release | version_compare('1.4', '>='))
  26. - include: containerized_node_upgrade.yml
  27. when: openshift.common.is_containerized | bool
  28. - name: Ensure containerized services stopped before Docker restart
  29. service: name={{ item }} state=stopped
  30. with_items:
  31. - etcd_container
  32. - openvswitch
  33. - "{{ openshift.common.service_type }}-master"
  34. - "{{ openshift.common.service_type }}-master-api"
  35. - "{{ openshift.common.service_type }}-master-controllers"
  36. - "{{ openshift.common.service_type }}-node"
  37. failed_when: false
  38. when: openshift.common.is_containerized | bool
  39. - name: Upgrade openvswitch
  40. package:
  41. name: openvswitch
  42. state: latest
  43. register: ovs_pkg
  44. when: not openshift.common.is_containerized | bool
  45. - name: Restart openvswitch
  46. systemd:
  47. name: openvswitch
  48. state: restarted
  49. when:
  50. - not openshift.common.is_containerized | bool
  51. - ovs_pkg | changed
  52. # Mandatory Docker restart, ensure all containerized services are running:
  53. - include: docker/restart.yml
  54. - name: Restart rpm node service
  55. service: name="{{ openshift.common.service_type }}-node" state=restarted
  56. when: not openshift.common.is_containerized | bool
  57. - name: Wait for node to be ready
  58. command: >
  59. {{ hostvars[groups.oo_first_master.0].openshift.common.client_binary }} get node {{ openshift.common.hostname | lower }} --no-headers
  60. register: node_output
  61. delegate_to: "{{ groups.oo_first_master.0 }}"
  62. until: "{{ node_output.stdout.split()[1].startswith('Ready')}}"
  63. # Give the node two minutes to come back online. Note that we pre-pull images now
  64. # so containerized services should restart quickly as well.
  65. retries: 24
  66. delay: 5
  67. # AUDIT:changed_when: `false` because we are only inspecting the
  68. # state of the node, we aren't changing anything (we changed node
  69. # service state in the previous task). You could say we shouldn't
  70. # override this because something will be changing (the state of a
  71. # service), but that should be part of the last task.
  72. changed_when: false