upgrade_control_plane.yml 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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. - name: Backup etcd
  16. hosts: etcd_hosts_to_backup
  17. vars:
  18. embedded_etcd: "{{ hostvars[groups.oo_first_master.0].openshift.master.embedded_etcd }}"
  19. timestamp: "{{ lookup('pipe', 'date +%Y%m%d%H%M%S') }}"
  20. roles:
  21. - openshift_facts
  22. tasks:
  23. # Ensure we persist the etcd role for this host in openshift_facts
  24. - openshift_facts:
  25. role: etcd
  26. local_facts: {}
  27. when: "'etcd' not in openshift"
  28. - stat: path=/var/lib/openshift
  29. register: var_lib_openshift
  30. - stat: path=/var/lib/origin
  31. register: var_lib_origin
  32. - name: Create origin symlink if necessary
  33. file: src=/var/lib/openshift/ dest=/var/lib/origin state=link
  34. when: var_lib_openshift.stat.exists == True and var_lib_origin.stat.exists == False
  35. # TODO: replace shell module with command and update later checks
  36. # We assume to be using the data dir for all backups.
  37. - name: Check available disk space for etcd backup
  38. shell: df --output=avail -k {{ openshift.common.data_dir }} | tail -n 1
  39. register: avail_disk
  40. # TODO: replace shell module with command and update later checks
  41. - name: Check current embedded etcd disk usage
  42. shell: du -k {{ openshift.etcd.etcd_data_dir }} | tail -n 1 | cut -f1
  43. register: etcd_disk_usage
  44. when: embedded_etcd | bool
  45. - name: Abort if insufficient disk space for etcd backup
  46. fail:
  47. msg: >
  48. {{ etcd_disk_usage.stdout }} Kb disk space required for etcd backup,
  49. {{ avail_disk.stdout }} Kb available.
  50. when: (embedded_etcd | bool) and (etcd_disk_usage.stdout|int > avail_disk.stdout|int)
  51. - name: Install etcd (for etcdctl)
  52. action: "{{ ansible_pkg_mgr }} name=etcd state=latest"
  53. when: not openshift.common.is_atomic | bool
  54. - name: Generate etcd backup
  55. command: >
  56. etcdctl backup --data-dir={{ openshift.etcd.etcd_data_dir }}
  57. --backup-dir={{ openshift.common.data_dir }}/etcd-backup-{{ timestamp }}
  58. - set_fact:
  59. etcd_backup_complete: True
  60. - name: Display location of etcd backup
  61. debug:
  62. msg: "Etcd backup created in {{ openshift.common.data_dir }}/etcd-backup-{{ timestamp }}"
  63. - name: Gate on etcd backup
  64. hosts: localhost
  65. connection: local
  66. become: no
  67. tasks:
  68. - set_fact:
  69. etcd_backup_completed: "{{ hostvars
  70. | oo_select_keys(groups.etcd_hosts_to_backup)
  71. | oo_collect('inventory_hostname', {'etcd_backup_complete': true}) }}"
  72. - set_fact:
  73. etcd_backup_failed: "{{ groups.etcd_hosts_to_backup | difference(etcd_backup_completed) }}"
  74. - fail:
  75. msg: "Upgrade cannot continue. The following hosts did not complete etcd backup: {{ etcd_backup_failed | join(',') }}"
  76. when: etcd_backup_failed | length > 0
  77. - name: Upgrade master packages
  78. hosts: oo_masters_to_config
  79. handlers:
  80. - include: ../../../../roles/openshift_master/handlers/main.yml
  81. static: yes
  82. roles:
  83. - openshift_facts
  84. tasks:
  85. - include: rpm_upgrade.yml component=master
  86. when: not openshift.common.is_containerized | bool
  87. - name: Determine if service signer cert must be created
  88. hosts: oo_first_master
  89. tasks:
  90. - name: Determine if service signer certificate must be created
  91. stat:
  92. path: "{{ openshift.common.config_base }}/master/service-signer.crt"
  93. register: service_signer_cert_stat
  94. changed_when: false
  95. # Create service signer cert when missing. Service signer certificate
  96. # is added to master config in the master config hook for v3_3.
  97. - include: create_service_signer_cert.yml
  98. - name: Upgrade master config and systemd units
  99. hosts: oo_masters_to_config
  100. handlers:
  101. - include: ../../../../roles/openshift_master/handlers/main.yml
  102. static: yes
  103. roles:
  104. - openshift_facts
  105. tasks:
  106. - include: "{{ master_config_hook }}"
  107. when: master_config_hook is defined
  108. - include_vars: ../../../../roles/openshift_master/vars/main.yml
  109. - name: Update systemd units
  110. include: ../../../../roles/openshift_master/tasks/systemd_units.yml
  111. # - name: Upgrade master configuration
  112. # openshift_upgrade_config:
  113. # from_version: '3.1'
  114. # to_version: '3.2'
  115. # role: master
  116. # config_base: "{{ hostvars[inventory_hostname].openshift.common.config_base }}"
  117. - name: Check for ca-bundle.crt
  118. stat:
  119. path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  120. register: ca_bundle_stat
  121. failed_when: false
  122. - name: Check for ca.crt
  123. stat:
  124. path: "{{ openshift.common.config_base }}/master/ca.crt"
  125. register: ca_crt_stat
  126. failed_when: false
  127. - name: Migrate ca.crt to ca-bundle.crt
  128. command: mv ca.crt ca-bundle.crt
  129. args:
  130. chdir: "{{ openshift.common.config_base }}/master"
  131. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  132. - name: Link ca.crt to ca-bundle.crt
  133. file:
  134. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  135. path: "{{ openshift.common.config_base }}/master/ca.crt"
  136. state: link
  137. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  138. - name: Set master update status to complete
  139. hosts: oo_masters_to_config
  140. tasks:
  141. - set_fact:
  142. master_update_complete: True
  143. ##############################################################################
  144. # Gate on master update complete
  145. ##############################################################################
  146. - name: Gate on master update
  147. hosts: localhost
  148. connection: local
  149. become: no
  150. tasks:
  151. - set_fact:
  152. master_update_completed: "{{ hostvars
  153. | oo_select_keys(groups.oo_masters_to_config)
  154. | oo_collect('inventory_hostname', {'master_update_complete': true}) }}"
  155. - set_fact:
  156. master_update_failed: "{{ groups.oo_masters_to_config | difference(master_update_completed) }}"
  157. - fail:
  158. msg: "Upgrade cannot continue. The following masters did not finish updating: {{ master_update_failed | join(',') }}"
  159. when: master_update_failed | length > 0
  160. ###############################################################################
  161. # Reconcile Cluster Roles, Cluster Role Bindings and Security Context Constraints
  162. ###############################################################################
  163. - name: Reconcile Cluster Roles and Cluster Role Bindings and Security Context Constraints
  164. hosts: oo_masters_to_config
  165. roles:
  166. - { role: openshift_cli }
  167. vars:
  168. origin_reconcile_bindings: "{{ deployment_type == 'origin' and openshift_version | version_compare('1.0.6', '>') }}"
  169. ent_reconcile_bindings: true
  170. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"
  171. # Another spot where we assume docker is running and do not want to accidentally trigger an unsafe
  172. # restart.
  173. skip_docker_role: True
  174. tasks:
  175. - name: Verifying the correct commandline tools are available
  176. shell: grep {{ verify_upgrade_version }} {{ openshift.common.admin_binary}}
  177. when: openshift.common.is_containerized | bool and verify_upgrade_version is defined
  178. - name: Reconcile Cluster Roles
  179. command: >
  180. {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  181. policy reconcile-cluster-roles --additive-only=true --confirm
  182. run_once: true
  183. - name: Reconcile Cluster Role Bindings
  184. command: >
  185. {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  186. policy reconcile-cluster-role-bindings
  187. --exclude-groups=system:authenticated
  188. --exclude-groups=system:authenticated:oauth
  189. --exclude-groups=system:unauthenticated
  190. --exclude-users=system:anonymous
  191. --additive-only=true --confirm
  192. when: origin_reconcile_bindings | bool or ent_reconcile_bindings | bool
  193. run_once: true
  194. - name: Reconcile Security Context Constraints
  195. command: >
  196. {{ openshift.common.admin_binary}} policy reconcile-sccs --confirm --additive-only=true
  197. run_once: true
  198. - set_fact:
  199. reconcile_complete: True
  200. ##############################################################################
  201. # Gate on reconcile
  202. ##############################################################################
  203. - name: Gate on reconcile
  204. hosts: localhost
  205. connection: local
  206. become: no
  207. tasks:
  208. - set_fact:
  209. reconcile_completed: "{{ hostvars
  210. | oo_select_keys(groups.oo_masters_to_config)
  211. | oo_collect('inventory_hostname', {'reconcile_complete': true}) }}"
  212. - set_fact:
  213. reconcile_failed: "{{ groups.oo_masters_to_config | difference(reconcile_completed) }}"
  214. - fail:
  215. msg: "Upgrade cannot continue. The following masters did not finish reconciling: {{ reconcile_failed | join(',') }}"
  216. when: reconcile_failed | length > 0
  217. - name: Upgrade Docker on dedicated containerized etcd hosts
  218. hosts: oo_etcd_to_config:!oo_nodes_to_upgrade
  219. serial: 1
  220. any_errors_fatal: true
  221. roles:
  222. - openshift_facts
  223. tasks:
  224. - include: docker/upgrade.yml
  225. when: l_docker_upgrade is defined and l_docker_upgrade | bool and not openshift.common.is_atomic | bool