upgrade_control_plane.yml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. ---
  2. ###############################################################################
  3. # Upgrade Masters
  4. ###############################################################################
  5. - name: Upgrade master packages
  6. hosts: oo_masters_to_config
  7. handlers:
  8. - include: ../../../../roles/openshift_master/handlers/main.yml
  9. static: yes
  10. roles:
  11. - openshift_facts
  12. tasks:
  13. - include: rpm_upgrade.yml component=master
  14. when: not openshift.common.is_containerized | bool
  15. - name: Determine if service signer cert must be created
  16. hosts: oo_first_master
  17. tasks:
  18. - name: Determine if service signer certificate must be created
  19. stat:
  20. path: "{{ openshift.common.config_base }}/master/service-signer.crt"
  21. register: service_signer_cert_stat
  22. changed_when: false
  23. # Create service signer cert when missing. Service signer certificate
  24. # is added to master config in the master config hook for v3_3.
  25. - include: create_service_signer_cert.yml
  26. when: not (hostvars[groups.oo_first_master.0].service_signer_cert_stat.stat.exists | bool)
  27. - name: Upgrade master config and systemd units
  28. hosts: oo_masters_to_config
  29. handlers:
  30. - include: ../../../../roles/openshift_master/handlers/main.yml
  31. static: yes
  32. roles:
  33. - openshift_facts
  34. tasks:
  35. - include: "{{ master_config_hook }}"
  36. when: master_config_hook is defined
  37. - include_vars: ../../../../roles/openshift_master/vars/main.yml
  38. - name: Update systemd units
  39. include: ../../../../roles/openshift_master/tasks/systemd_units.yml
  40. # - name: Upgrade master configuration
  41. # openshift_upgrade_config:
  42. # from_version: '3.1'
  43. # to_version: '3.2'
  44. # role: master
  45. # config_base: "{{ hostvars[inventory_hostname].openshift.common.config_base }}"
  46. - name: Check for ca-bundle.crt
  47. stat:
  48. path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  49. register: ca_bundle_stat
  50. failed_when: false
  51. - name: Check for ca.crt
  52. stat:
  53. path: "{{ openshift.common.config_base }}/master/ca.crt"
  54. register: ca_crt_stat
  55. failed_when: false
  56. - name: Migrate ca.crt to ca-bundle.crt
  57. command: mv ca.crt ca-bundle.crt
  58. args:
  59. chdir: "{{ openshift.common.config_base }}/master"
  60. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  61. - name: Link ca.crt to ca-bundle.crt
  62. file:
  63. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  64. path: "{{ openshift.common.config_base }}/master/ca.crt"
  65. state: link
  66. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  67. - name: Set master update status to complete
  68. hosts: oo_masters_to_config
  69. tasks:
  70. - set_fact:
  71. master_update_complete: True
  72. ##############################################################################
  73. # Gate on master update complete
  74. ##############################################################################
  75. - name: Gate on master update
  76. hosts: localhost
  77. connection: local
  78. become: no
  79. tasks:
  80. - set_fact:
  81. master_update_completed: "{{ hostvars
  82. | oo_select_keys(groups.oo_masters_to_config)
  83. | oo_collect('inventory_hostname', {'master_update_complete': true}) }}"
  84. - set_fact:
  85. master_update_failed: "{{ groups.oo_masters_to_config | difference(master_update_completed) }}"
  86. - fail:
  87. msg: "Upgrade cannot continue. The following masters did not finish updating: {{ master_update_failed | join(',') }}"
  88. when: master_update_failed | length > 0
  89. ###############################################################################
  90. # Reconcile Cluster Roles, Cluster Role Bindings and Security Context Constraints
  91. ###############################################################################
  92. - name: Reconcile Cluster Roles and Cluster Role Bindings and Security Context Constraints
  93. hosts: oo_masters_to_config
  94. roles:
  95. - { role: openshift_cli }
  96. vars:
  97. origin_reconcile_bindings: "{{ deployment_type == 'origin' and openshift_version | version_compare('1.0.6', '>') }}"
  98. ent_reconcile_bindings: true
  99. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"
  100. # Another spot where we assume docker is running and do not want to accidentally trigger an unsafe
  101. # restart.
  102. skip_docker_role: True
  103. tasks:
  104. - name: Verifying the correct commandline tools are available
  105. shell: grep {{ verify_upgrade_version }} {{ openshift.common.admin_binary}}
  106. when: openshift.common.is_containerized | bool and verify_upgrade_version is defined
  107. - name: Reconcile Cluster Roles
  108. command: >
  109. {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  110. policy reconcile-cluster-roles --additive-only=true --confirm
  111. run_once: true
  112. - name: Reconcile Cluster Role Bindings
  113. command: >
  114. {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  115. policy reconcile-cluster-role-bindings
  116. --exclude-groups=system:authenticated
  117. --exclude-groups=system:authenticated:oauth
  118. --exclude-groups=system:unauthenticated
  119. --exclude-users=system:anonymous
  120. --additive-only=true --confirm
  121. when: origin_reconcile_bindings | bool or ent_reconcile_bindings | bool
  122. run_once: true
  123. - name: Reconcile Security Context Constraints
  124. command: >
  125. {{ openshift.common.admin_binary}} policy reconcile-sccs --confirm --additive-only=true
  126. run_once: true
  127. - set_fact:
  128. reconcile_complete: True
  129. ##############################################################################
  130. # Gate on reconcile
  131. ##############################################################################
  132. - name: Gate on reconcile
  133. hosts: localhost
  134. connection: local
  135. become: no
  136. tasks:
  137. - set_fact:
  138. reconcile_completed: "{{ hostvars
  139. | oo_select_keys(groups.oo_masters_to_config)
  140. | oo_collect('inventory_hostname', {'reconcile_complete': true}) }}"
  141. - set_fact:
  142. reconcile_failed: "{{ groups.oo_masters_to_config | difference(reconcile_completed) }}"
  143. - fail:
  144. msg: "Upgrade cannot continue. The following masters did not finish reconciling: {{ reconcile_failed | join(',') }}"
  145. when: reconcile_failed | length > 0
  146. - name: Upgrade Docker on dedicated containerized etcd hosts
  147. hosts: oo_etcd_to_config:!oo_nodes_to_upgrade
  148. serial: 1
  149. any_errors_fatal: true
  150. roles:
  151. - openshift_facts
  152. tasks:
  153. - include: docker/upgrade.yml
  154. when: l_docker_upgrade is defined and l_docker_upgrade | bool and not openshift.common.is_atomic | bool