upgrade.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. ---
  2. # input variables:
  3. # - l_docker_upgrade
  4. # - openshift_is_atomic
  5. # - node_config_hook
  6. # - openshift_pkg_version
  7. # - openshift_release
  8. # tasks file for openshift_node_upgrade
  9. - name: stop services for upgrade
  10. import_tasks: upgrade/stop_services.yml
  11. # Ensure actually install latest package.
  12. - name: install docker upgrade rpm
  13. command: "{{ ansible_pkg_mgr }} install -y docker{{ '-' + docker_version }}"
  14. register: result
  15. until: result is succeeded
  16. when:
  17. - l_docker_upgrade is defined
  18. - l_docker_upgrade | bool
  19. - name: Ensure cri-o is updated
  20. package:
  21. name: "{{ crio_pkgs | join (',') }}"
  22. state: latest
  23. when:
  24. - openshift_use_crio | bool
  25. register: crio_update
  26. vars:
  27. crio_pkgs:
  28. - "cri-o"
  29. - "cri-tools"
  30. - name: Remove CRI-O default configuration files
  31. file:
  32. path: "{{ item }}"
  33. state: absent
  34. with_items:
  35. - "/etc/cni/net.d/200-loopback.conf"
  36. - "/etc/cni/net.d/100-crio-bridge.conf"
  37. when: crio_update is changed
  38. - name: Ensure crictl.yaml runtime-endpoint is updated
  39. yedit:
  40. src: /etc/crictl.yaml
  41. key: runtime-endpoint
  42. value: "{{ openshift_crio_var_sock }}"
  43. when:
  44. - openshift_use_crio | default(False) | bool
  45. - name: install pre-pulled rpms.
  46. import_tasks: upgrade/rpm_upgrade_install.yml
  47. when: not openshift_is_atomic | bool
  48. - include_tasks: "{{ node_config_hook }}"
  49. when: node_config_hook is defined
  50. - import_tasks: upgrade/config_changes.yml
  51. - import_tasks: dnsmasq_install.yml
  52. - import_tasks: dnsmasq.yml
  53. # Restart all services
  54. - import_tasks: upgrade/restart.yml
  55. - name: Approve node certificates when bootstrapping
  56. oc_adm_csr:
  57. nodes: "{{ openshift.node.nodename | lower }}"
  58. timeout: 180
  59. fail_on_timeout: true
  60. delegate_to: "{{ groups.oo_first_master.0 }}"
  61. ignore_errors: true
  62. - name: Wait for node to be ready
  63. oc_obj:
  64. state: list
  65. kind: node
  66. name: "{{ openshift.node.nodename | lower }}"
  67. register: node_output
  68. delegate_to: "{{ groups.oo_first_master.0 }}"
  69. until:
  70. - node_output.results is defined
  71. - node_output.results.returncode is defined
  72. - node_output.results.returncode == 0
  73. - node_output.results.results is defined
  74. - node_output.results.results | length > 0
  75. - node_output.results.results[0].status is defined
  76. - node_output.results.results[0].status.conditions is defined
  77. - node_output.results.results[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
  78. # Give the node three minutes to come back online.
  79. retries: 36
  80. delay: 5
  81. - import_tasks: journald.yml
  82. - meta: flush_handlers