upgrade_control_plane.yml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. ---
  2. #
  3. # Control Plane Upgrade Playbook
  4. #
  5. # Upgrades masters and Docker (only on standalone etcd hosts)
  6. #
  7. # This upgrade does not include:
  8. # - node service running on masters
  9. # - docker running on masters
  10. # - node service running on dedicated nodes
  11. #
  12. # You can run the upgrade_nodes.yml playbook after this to upgrade these components separately.
  13. #
  14. - import_playbook: ../init.yml
  15. vars:
  16. l_upgrade_no_switch_firewall_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  17. l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  18. l_base_packages_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  19. l_upgrade_cert_check_hosts: "oo_masters_to_config:oo_etcd_to_config"
  20. - name: Configure the upgrade target for the common upgrade tasks 3.11
  21. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
  22. tasks:
  23. - set_fact:
  24. openshift_upgrade_target: '3.11'
  25. openshift_upgrade_min: '3.10'
  26. openshift_release: '3.11'
  27. - import_playbook: ../pre/config.yml
  28. # These vars a meant to exclude oo_nodes from plays that would otherwise include
  29. # them by default.
  30. vars:
  31. l_openshift_version_set_hosts: "oo_etcd_to_config:oo_masters_to_config:!oo_first_master"
  32. l_upgrade_repo_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  33. l_upgrade_no_proxy_hosts: "oo_masters_to_config"
  34. l_upgrade_health_check_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  35. l_upgrade_verify_targets_hosts: "oo_masters_to_config"
  36. l_upgrade_docker_target_hosts: "oo_masters_to_config:oo_etcd_to_config"
  37. l_upgrade_excluder_hosts: "oo_masters_to_config"
  38. openshift_protect_installed_version: False
  39. # Need to run sanity checks after version has been run.
  40. - import_playbook: ../../../../init/sanity_checks.yml
  41. vars:
  42. # oo_lb_to_config might not be present; Can't use !oo_nodes because masters are nodes.
  43. l_sanity_check_hosts: "{{ groups['oo_etcd_to_config'] | union(groups['oo_masters_to_config']) | union(groups['oo_lb_to_config'] | default([]) ) }}"
  44. - name: Flag pre-upgrade checks complete for hosts without errors
  45. hosts: oo_masters_to_config:oo_etcd_to_config
  46. tasks:
  47. - set_fact:
  48. pre_upgrade_complete: True
  49. - import_playbook: label_nodes.yml
  50. # To upgrade, we need masters to be capable of signing certificates
  51. - hosts: oo_masters
  52. serial: 1
  53. tasks:
  54. - name: Enable core bootstrapping components
  55. include_tasks: ../../../../openshift-master/private/tasks/enable_bootstrap.yml
  56. - name: Place shim commands on the masters before we begin the upgrade
  57. import_role:
  58. name: openshift_control_plane
  59. tasks_from: static_shim
  60. # TODO: need to verify settings about the bootstrap configs
  61. # 1. Does network policy match the master config
  62. - name: Ensure metrics-server is installed before upgrading the controller-manager
  63. hosts: oo_first_master
  64. roles:
  65. - role: metrics_server
  66. # a default is set on the actual variable in the role, so no fancy logic is needed here
  67. when: openshift_metrics_server_install | default(true) | bool
  68. - name: Configure components that must be available prior to upgrade
  69. hosts: oo_first_master
  70. pre_tasks:
  71. - name: Enable core bootstrapping components
  72. include_tasks: ../../../../openshift-master/private/tasks/enable_bootstrap_config.yml
  73. - name: Ensure the master bootstrap config has bootstrapping config
  74. import_role:
  75. name: openshift_node_group
  76. tasks_from: upgrade
  77. - name: Enable node configuration reconciliation
  78. import_role:
  79. name: openshift_node_group
  80. tasks_from: sync
  81. roles:
  82. - role: openshift_sdn
  83. when: openshift_use_openshift_sdn | default(True) | bool
  84. - name: Update master nodes
  85. hosts: oo_masters
  86. serial: 1
  87. tasks:
  88. - import_role:
  89. name: openshift_node
  90. tasks_from: upgrade_pre
  91. - import_role:
  92. name: openshift_node
  93. tasks_from: upgrade
  94. - import_role:
  95. name: openshift_storage_glusterfs
  96. tasks_from: check_cluster_health.yml
  97. when: >
  98. ('glusterfs' in groups and inventory_hostname in groups['glusterfs'])
  99. or ('glusterfs_registry' in groups and inventory_hostname in groups['glusterfs_registry'])
  100. - import_playbook: ../upgrade_control_plane.yml
  101. vars:
  102. openshift_release: '3.11'
  103. - import_playbook: ../post_control_plane.yml
  104. - hosts: oo_masters
  105. tasks:
  106. - import_role:
  107. name: openshift_web_console
  108. tasks_from: remove_old_asset_config
  109. # This is a one time migration. No need to save it in the 3.11.
  110. # https://bugzilla.redhat.com/show_bug.cgi?id=1565736
  111. - hosts: oo_first_master
  112. tasks:
  113. - import_role:
  114. name: openshift_hosted
  115. tasks_from: registry_service_account.yml
  116. when: openshift_hosted_manage_registry | default(True) | bool
  117. - import_role:
  118. name: openshift_hosted
  119. tasks_from: remove_legacy_env_variables.yml
  120. when: openshift_hosted_manage_registry | default(True) | bool