upgrade_control_plane.yml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. ---
  2. ###############################################################################
  3. # Upgrade Masters
  4. ###############################################################################
  5. - name: Evaluate additional groups for upgrade
  6. hosts: localhost
  7. connection: local
  8. become: no
  9. tasks:
  10. - name: Evaluate etcd_hosts_to_backup
  11. add_host:
  12. name: "{{ item }}"
  13. groups: etcd_hosts_to_backup
  14. with_items: "{{ groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else groups.oo_first_master }}"
  15. # If facts cache were for some reason deleted, this fact may not be set, and if not set
  16. # it will always default to true. This causes problems for the etcd data dir fact detection
  17. # so we must first make sure this is set correctly before attempting the backup.
  18. - name: Set master embedded_etcd fact
  19. hosts: oo_masters_to_config
  20. roles:
  21. - openshift_facts
  22. tasks:
  23. - openshift_facts:
  24. role: master
  25. local_facts:
  26. embedded_etcd: "{{ groups.oo_etcd_to_config | default([]) | length == 0 }}"
  27. debug_level: "{{ openshift_master_debug_level | default(openshift.common.debug_level | default(2)) }}"
  28. - name: Upgrade and backup etcd
  29. include: ./etcd/main.yml
  30. - name: Upgrade master packages
  31. hosts: oo_masters_to_config
  32. roles:
  33. - openshift_facts
  34. tasks:
  35. - include: rpm_upgrade.yml component=master
  36. when: not openshift.common.is_containerized | bool
  37. # Create service signer cert when missing. Service signer certificate
  38. # is added to master config in the master config hook for v3_3.
  39. - name: Determine if service signer cert must be created
  40. hosts: oo_first_master
  41. tasks:
  42. - name: Determine if service signer certificate must be created
  43. stat:
  44. path: "{{ openshift.common.config_base }}/master/service-signer.crt"
  45. register: service_signer_cert_stat
  46. changed_when: false
  47. - include: create_service_signer_cert.yml
  48. - name: Upgrade master config and systemd units
  49. hosts: oo_masters_to_config
  50. handlers:
  51. - include: ../../../../roles/openshift_master/handlers/main.yml
  52. static: yes
  53. roles:
  54. - openshift_facts
  55. - openshift_master_facts
  56. tasks:
  57. - include: upgrade_scheduler.yml
  58. - include: "{{ master_config_hook }}"
  59. when: master_config_hook is defined
  60. - include_vars: ../../../../roles/openshift_master/vars/main.yml
  61. - name: Update systemd units
  62. include: ../../../../roles/openshift_master/tasks/systemd_units.yml
  63. - name: Check for ca-bundle.crt
  64. stat:
  65. path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  66. register: ca_bundle_stat
  67. failed_when: false
  68. - name: Check for ca.crt
  69. stat:
  70. path: "{{ openshift.common.config_base }}/master/ca.crt"
  71. register: ca_crt_stat
  72. failed_when: false
  73. - name: Migrate ca.crt to ca-bundle.crt
  74. command: mv ca.crt ca-bundle.crt
  75. args:
  76. chdir: "{{ openshift.common.config_base }}/master"
  77. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  78. - name: Link ca.crt to ca-bundle.crt
  79. file:
  80. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  81. path: "{{ openshift.common.config_base }}/master/ca.crt"
  82. state: link
  83. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  84. - name: Set master update status to complete
  85. hosts: oo_masters_to_config
  86. tasks:
  87. - set_fact:
  88. master_update_complete: True
  89. ##############################################################################
  90. # Gate on master update complete
  91. ##############################################################################
  92. - name: Gate on master update
  93. hosts: localhost
  94. connection: local
  95. become: no
  96. tasks:
  97. - set_fact:
  98. master_update_completed: "{{ hostvars
  99. | oo_select_keys(groups.oo_masters_to_config)
  100. | oo_collect('inventory_hostname', {'master_update_complete': true}) }}"
  101. - set_fact:
  102. master_update_failed: "{{ groups.oo_masters_to_config | difference(master_update_completed) }}"
  103. - fail:
  104. msg: "Upgrade cannot continue. The following masters did not finish updating: {{ master_update_failed | join(',') }}"
  105. when: master_update_failed | length > 0
  106. # We are now ready to restart master services (or entire system
  107. # depending on openshift_rolling_restart_mode):
  108. - include: ../../openshift-master/restart.yml
  109. ###############################################################################
  110. # Reconcile Cluster Roles, Cluster Role Bindings and Security Context Constraints
  111. ###############################################################################
  112. - name: Reconcile Cluster Roles and Cluster Role Bindings and Security Context Constraints
  113. hosts: oo_masters_to_config
  114. roles:
  115. - { role: openshift_cli }
  116. vars:
  117. origin_reconcile_bindings: "{{ deployment_type == 'origin' and openshift_version | version_compare('1.0.6', '>') }}"
  118. ent_reconcile_bindings: true
  119. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"
  120. # Another spot where we assume docker is running and do not want to accidentally trigger an unsafe
  121. # restart.
  122. skip_docker_role: True
  123. tasks:
  124. - name: Reconcile Cluster Roles
  125. command: >
  126. {{ openshift.common.client_binary }} adm --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  127. policy reconcile-cluster-roles --additive-only=true --confirm
  128. run_once: true
  129. - name: Reconcile Cluster Role Bindings
  130. command: >
  131. {{ openshift.common.client_binary }} adm --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  132. policy reconcile-cluster-role-bindings
  133. --exclude-groups=system:authenticated
  134. --exclude-groups=system:authenticated:oauth
  135. --exclude-groups=system:unauthenticated
  136. --exclude-users=system:anonymous
  137. --additive-only=true --confirm
  138. when: origin_reconcile_bindings | bool or ent_reconcile_bindings | bool
  139. run_once: true
  140. - name: Reconcile Jenkins Pipeline Role Bindings
  141. command: >
  142. {{ openshift.common.client_binary }} adm --config={{ openshift.common.config_base }}/master/admin.kubeconfig policy reconcile-cluster-role-bindings system:build-strategy-jenkinspipeline --confirm
  143. run_once: true
  144. when: openshift.common.version_gte_3_4_or_1_4 | bool
  145. - name: Reconcile Security Context Constraints
  146. command: >
  147. {{ openshift.common.client_binary }} adm policy reconcile-sccs --confirm --additive-only=true
  148. run_once: true
  149. - set_fact:
  150. reconcile_complete: True
  151. ##############################################################################
  152. # Gate on reconcile
  153. ##############################################################################
  154. - name: Gate on reconcile
  155. hosts: localhost
  156. connection: local
  157. become: no
  158. tasks:
  159. - set_fact:
  160. reconcile_completed: "{{ hostvars
  161. | oo_select_keys(groups.oo_masters_to_config)
  162. | oo_collect('inventory_hostname', {'reconcile_complete': true}) }}"
  163. - set_fact:
  164. reconcile_failed: "{{ groups.oo_masters_to_config | difference(reconcile_completed) }}"
  165. - fail:
  166. msg: "Upgrade cannot continue. The following masters did not finish reconciling: {{ reconcile_failed | join(',') }}"
  167. when: reconcile_failed | length > 0
  168. - name: Upgrade Docker on dedicated containerized etcd hosts
  169. hosts: oo_etcd_to_config:!oo_nodes_to_upgrade
  170. serial: 1
  171. any_errors_fatal: true
  172. roles:
  173. - openshift_facts
  174. tasks:
  175. - include: docker/upgrade.yml
  176. when: l_docker_upgrade is defined and l_docker_upgrade | bool and not openshift.common.is_atomic | bool