docker_upgrade.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. ---
  2. - import_playbook: ../../../../init/evaluate_groups.yml
  3. vars:
  4. # Do not allow adding hosts during upgrade.
  5. g_new_master_hosts: []
  6. g_new_node_hosts: []
  7. - import_playbook: ../initialize_nodes_to_upgrade.yml
  8. - import_playbook: ../../../../init/basic_facts.yml
  9. vars:
  10. l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_nodes_to_upgrade"
  11. - import_playbook: ../../../../init/cluster_facts.yml
  12. vars:
  13. l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_nodes_to_upgrade"
  14. # We need version for sanity_checks, but we don't need to actually check if
  15. # packages/images are available because we're not install any origin components.
  16. - import_playbook: ../../../../init/version.yml
  17. vars:
  18. l_openshift_version_set_hosts: "oo_etcd_to_config:oo_nodes_to_upgrade:oo_masters_to_config:!oo_first_master"
  19. # Ensure inventory sanity_checks are run.
  20. - import_playbook: ../../../../init/sanity_checks.yml
  21. vars:
  22. l_sanity_check_hosts: "{{ groups['oo_nodes_to_upgrade'] | union(groups['oo_masters_to_config']) | union(groups['oo_etcd_to_config']) }}"
  23. - name: Check for appropriate Docker versions
  24. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  25. roles:
  26. - openshift_facts
  27. tasks:
  28. - fail:
  29. msg: Cannot upgrade Docker on Atomic operating systems.
  30. when: openshift_is_atomic | bool
  31. - import_role:
  32. name: container_runtime
  33. tasks_from: docker_upgrade_check.yml
  34. when: docker_upgrade | default(True) | bool
  35. # If a node fails, halt everything, the admin will need to clean up and we
  36. # don't want to carry on, potentially taking out every node. The playbook can safely be re-run
  37. # and will not take any action on a node already running the requested docker version.
  38. - name: Drain and upgrade nodes
  39. hosts: oo_masters_to_config:oo_nodes_to_upgrade:oo_etcd_to_config
  40. serial: 1
  41. any_errors_fatal: true
  42. roles:
  43. - openshift_facts
  44. - lib_openshift
  45. tasks:
  46. - name: Mark node unschedulable
  47. oc_adm_manage_node:
  48. node: "{{ openshift.node.nodename | lower }}"
  49. schedulable: False
  50. delegate_to: "{{ groups.oo_first_master.0 }}"
  51. retries: 10
  52. delay: 5
  53. register: node_unschedulable
  54. until: node_unschedulable is succeeded
  55. when:
  56. - l_docker_upgrade is defined
  57. - l_docker_upgrade | bool
  58. - inventory_hostname in groups.oo_nodes_to_upgrade
  59. - name: Drain Node for Kubelet upgrade
  60. command: >
  61. {{ hostvars[groups.oo_first_master.0]['first_master_client_binary'] }} adm drain {{ openshift.node.nodename | lower }}
  62. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  63. --force --delete-local-data --ignore-daemonsets
  64. --timeout={{ openshift_upgrade_nodes_drain_timeout | default(0) }}s
  65. delegate_to: "{{ groups.oo_first_master.0 }}"
  66. when:
  67. - l_docker_upgrade is defined
  68. - l_docker_upgrade | bool
  69. - inventory_hostname in groups.oo_nodes_to_upgrade
  70. register: l_docker_upgrade_drain_result
  71. until: not (l_docker_upgrade_drain_result is failed)
  72. retries: "{{ 1 if ( openshift_upgrade_nodes_drain_timeout | default(0) | int ) == 0 else 0 }}"
  73. delay: 5
  74. failed_when:
  75. - l_docker_upgrade_drain_result is failed
  76. - openshift_upgrade_nodes_drain_timeout | default(0) | int == 0
  77. - import_tasks: tasks/upgrade.yml
  78. when:
  79. - l_docker_upgrade is defined
  80. - l_docker_upgrade | bool
  81. - name: Set node schedulability
  82. oc_adm_manage_node:
  83. node: "{{ openshift.node.nodename | lower }}"
  84. schedulable: True
  85. delegate_to: "{{ groups.oo_first_master.0 }}"
  86. retries: 10
  87. delay: 5
  88. register: node_schedulable
  89. until: node_schedulable is succeeded
  90. when: node_unschedulable is changed