upgrade_control_plane.yml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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:oo_nodes_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.10
  21. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
  22. tasks:
  23. - set_fact:
  24. openshift_upgrade_target: '3.10'
  25. openshift_upgrade_min: '3.9'
  26. openshift_release: '3.10'
  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.yml
  60. # TODO: need to verify settings about the bootstrap configs
  61. # 1. Does network policy match the master config
  62. - name: Configure components that must be available prior to upgrade
  63. hosts: oo_first_master
  64. pre_tasks:
  65. - name: Enable core bootstrapping components
  66. include_tasks: ../../../../openshift-master/private/tasks/enable_bootstrap_config.yml
  67. - name: Ensure the master bootstrap config has bootstrapping config
  68. import_role:
  69. name: openshift_node_group
  70. tasks_from: upgrade.yml
  71. - name: Enable node configuration reconciliation
  72. import_role:
  73. name: openshift_node_group
  74. tasks_from: sync.yml
  75. roles:
  76. - role: openshift_sdn
  77. when: openshift_use_openshift_sdn | default(True) | bool
  78. - name: Update master nodes
  79. hosts: oo_masters
  80. serial: 1
  81. tasks:
  82. - import_role:
  83. name: openshift_node
  84. tasks_from: upgrade_pre.yml
  85. - import_role:
  86. name: openshift_node
  87. tasks_from: upgrade.yml
  88. - import_playbook: ../upgrade_control_plane.yml
  89. vars:
  90. openshift_release: '3.10'
  91. - import_playbook: ../post_control_plane.yml
  92. - hosts: oo_masters
  93. tasks:
  94. - import_role:
  95. name: openshift_web_console
  96. tasks_from: remove_old_asset_config.yml
  97. # This is a one time migration. No need to save it in the 3.11.
  98. # https://bugzilla.redhat.com/show_bug.cgi?id=1565736
  99. - hosts: oo_first_master
  100. tasks:
  101. - import_role:
  102. name: openshift_hosted
  103. tasks_from: registry_service_account.yml
  104. when: openshift_hosted_manage_registry | default(True) | bool
  105. - import_role:
  106. name: openshift_hosted
  107. tasks_from: remove_legacy_env_variables.yml
  108. when: openshift_hosted_manage_registry | default(True) | bool