upgrade.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ---
  2. # input variables:
  3. # - l_docker_upgrade
  4. # - openshift_is_atomic
  5. # - node_config_hook
  6. # - openshift_pkg_version
  7. # - openshift_is_containerized
  8. # - openshift_release
  9. # tasks file for openshift_node_upgrade
  10. - name: stop services for upgrade
  11. include_tasks: upgrade/stop_services.yml
  12. # Ensure actually install latest package.
  13. - name: download docker upgrade rpm
  14. command: "{{ ansible_pkg_mgr }} install -C -y docker{{ '-' + docker_version }}"
  15. register: result
  16. until: result is succeeded
  17. when:
  18. - l_docker_upgrade is defined
  19. - l_docker_upgrade | bool
  20. - name: install pre-pulled rpms.
  21. include_tasks: upgrade/rpm_upgrade_install.yml
  22. vars:
  23. openshift_version: "{{ openshift_pkg_version | default('') }}"
  24. when: not openshift_is_containerized | bool
  25. - include_tasks: "{{ node_config_hook }}"
  26. when: node_config_hook is defined
  27. - include_tasks: upgrade/config_changes.yml
  28. # Restart all services
  29. - include_tasks: upgrade/restart.yml
  30. - name: Wait for node to be ready
  31. oc_obj:
  32. state: list
  33. kind: node
  34. name: "{{ openshift.common.hostname | lower }}"
  35. register: node_output
  36. delegate_to: "{{ groups.oo_first_master.0 }}"
  37. until: node_output.results.returncode == 0 and node_output.results.results[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
  38. # Give the node two minutes to come back online.
  39. retries: 24
  40. delay: 5
  41. - include_tasks: dnsmasq_install.yml
  42. - include_tasks: dnsmasq.yml
  43. - meta: flush_handlers