upgrade.yml 1.5 KB

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