upgrade.yml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. ---
  2. # This is a workaround for authenticated registries
  3. - name: Download new images
  4. hosts: oo_nodes_to_config
  5. roles:
  6. - openshift_facts
  7. tasks:
  8. - name: Pull Images
  9. command: >
  10. docker pull {{ item }}:v{{ g_new_version }}
  11. with_items:
  12. - "{{ openshift.node.node_image }}"
  13. - "{{ openshift.node.ovs_image }}"
  14. - "{{ openshift.common.pod_image }}"
  15. - "{{ openshift.common.router_image }}"
  16. - "{{ openshift.common.registry_image }}"
  17. - "{{ openshift.common.deployer_image }}"
  18. # This is a workaround for authenticated registries
  19. - name: Download new images
  20. hosts: oo_masters_to_config
  21. roles:
  22. - openshift_facts
  23. tasks:
  24. - name: Pull Images
  25. command: >
  26. docker pull {{ item }}:v{{ g_new_version }}
  27. with_items:
  28. - "{{ openshift.master.master_image }}"
  29. ###############################################################################
  30. # The restart playbook should be run after this playbook completes.
  31. ###############################################################################
  32. - name: Upgrade docker
  33. hosts: oo_masters_to_config:oo_nodes_to_config:oo_etcd_to_config
  34. roles:
  35. - openshift_facts
  36. tasks:
  37. - include: docker_upgrade.yml
  38. when: not openshift.common.is_atomic | bool
  39. ###############################################################################
  40. # Upgrade Masters
  41. ###############################################################################
  42. - name: Upgrade master
  43. hosts: oo_masters_to_config
  44. handlers:
  45. - include: ../../../../../roles/openshift_master/handlers/main.yml
  46. roles:
  47. - openshift_facts
  48. tasks:
  49. - include: rpm_upgrade.yml component=master
  50. when: not openshift.common.is_containerized | bool
  51. - include_vars: ../../../../../roles/openshift_master/vars/main.yml
  52. - name: Update systemd units
  53. include: ../../../../../roles/openshift_master/tasks/systemd_units.yml openshift_version=v{{ g_aos_versions.avail_version }}
  54. # - name: Upgrade master configuration
  55. # openshift_upgrade_config:
  56. # from_version: '3.1'
  57. # to_version: '3.2'
  58. # role: master
  59. # config_base: "{{ hostvars[inventory_hostname].openshift.common.config_base }}"
  60. - name: Set master update status to complete
  61. hosts: oo_masters_to_config
  62. tasks:
  63. - set_fact:
  64. master_update_complete: True
  65. ##############################################################################
  66. # Gate on master update complete
  67. ##############################################################################
  68. - name: Gate on master update
  69. hosts: localhost
  70. connection: local
  71. become: no
  72. tasks:
  73. - set_fact:
  74. master_update_completed: "{{ hostvars
  75. | oo_select_keys(groups.oo_masters_to_config)
  76. | oo_collect('inventory_hostname', {'master_update_complete': true}) }}"
  77. - set_fact:
  78. master_update_failed: "{{ groups.oo_masters_to_config | difference(master_update_completed) }}"
  79. - fail:
  80. msg: "Upgrade cannot continue. The following masters did not finish updating: {{ master_update_failed | join(',') }}"
  81. when: master_update_failed | length > 0
  82. ###############################################################################
  83. # Upgrade Nodes
  84. ###############################################################################
  85. - name: Upgrade nodes
  86. hosts: oo_nodes_to_config
  87. roles:
  88. - openshift_facts
  89. handlers:
  90. - include: ../../../../../roles/openshift_node/handlers/main.yml
  91. tasks:
  92. - include: rpm_upgrade.yml
  93. vars:
  94. component: "node"
  95. openshift_version: "{{ openshift_pkg_version | default('') }}"
  96. when: not openshift.common.is_containerized | bool
  97. - include: containerized_upgrade.yml
  98. when: openshift.common.is_containerized | bool
  99. # This will restart the node
  100. - name: Restart openvswitch service
  101. service: name="{{ openshift.common.service_type }}-node" state=restarted
  102. - set_fact:
  103. node_update_complete: True
  104. ##############################################################################
  105. # Gate on nodes update
  106. ##############################################################################
  107. - name: Gate on nodes update
  108. hosts: localhost
  109. connection: local
  110. become: no
  111. tasks:
  112. - set_fact:
  113. node_update_completed: "{{ hostvars
  114. | oo_select_keys(groups.oo_nodes_to_config)
  115. | oo_collect('inventory_hostname', {'node_update_complete': true}) }}"
  116. - set_fact:
  117. node_update_failed: "{{ groups.oo_nodes_to_config | difference(node_update_completed) }}"
  118. - fail:
  119. msg: "Upgrade cannot continue. The following nodes did not finish updating: {{ node_update_failed | join(',') }}"
  120. when: node_update_failed | length > 0
  121. ###############################################################################
  122. # Reconcile Cluster Roles, Cluster Role Bindings and Security Context Constraints
  123. ###############################################################################
  124. - name: Reconcile Cluster Roles and Cluster Role Bindings and Security Context Constraints
  125. hosts: oo_masters_to_config
  126. roles:
  127. - { role: openshift_cli, openshift_image_tag: "v{{ g_new_version }}" }
  128. vars:
  129. origin_reconcile_bindings: "{{ deployment_type == 'origin' and g_new_version | version_compare('1.0.6', '>') }}"
  130. ent_reconcile_bindings: true
  131. openshift_docker_hosted_registry_insecure: True
  132. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.master.portal_net }}"
  133. tasks:
  134. - name: Verifying the correct commandline tools are available
  135. shell: grep {{ verify_upgrade_version }} {{ openshift.common.admin_binary}}
  136. when: openshift.common.is_containerized | bool and verify_upgrade_version is defined
  137. - name: Reconcile Cluster Roles
  138. command: >
  139. {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  140. policy reconcile-cluster-roles --confirm
  141. run_once: true
  142. - name: Reconcile Cluster Role Bindings
  143. command: >
  144. {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  145. policy reconcile-cluster-role-bindings
  146. --exclude-groups=system:authenticated
  147. --exclude-groups=system:authenticated:oauth
  148. --exclude-groups=system:unauthenticated
  149. --exclude-users=system:anonymous
  150. --additive-only=true --confirm
  151. when: origin_reconcile_bindings | bool or ent_reconcile_bindings | bool
  152. run_once: true
  153. - name: Reconcile Security Context Constraints
  154. command: >
  155. {{ openshift.common.admin_binary}} policy reconcile-sccs --confirm
  156. run_once: true
  157. - set_fact:
  158. reconcile_complete: True
  159. ##############################################################################
  160. # Gate on reconcile
  161. ##############################################################################
  162. - name: Gate on reconcile
  163. hosts: localhost
  164. connection: local
  165. become: no
  166. tasks:
  167. - set_fact:
  168. reconcile_completed: "{{ hostvars
  169. | oo_select_keys(groups.oo_masters_to_config)
  170. | oo_collect('inventory_hostname', {'reconcile_complete': true}) }}"
  171. - set_fact:
  172. reconcile_failed: "{{ groups.oo_masters_to_config | difference(reconcile_completed) }}"
  173. - fail:
  174. msg: "Upgrade cannot continue. The following masters did not finish reconciling: {{ reconcile_failed | join(',') }}"
  175. when: reconcile_failed | length > 0