upgrade_control_plane.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. - name: Configure the upgrade target for the common upgrade tasks 3.10
  20. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
  21. tasks:
  22. - set_fact:
  23. openshift_upgrade_target: '3.10'
  24. openshift_upgrade_min: '3.9'
  25. openshift_release: '3.10'
  26. - import_playbook: ../pre/config.yml
  27. # These vars a meant to exclude oo_nodes from plays that would otherwise include
  28. # them by default.
  29. vars:
  30. l_openshift_version_set_hosts: "oo_etcd_to_config:oo_masters_to_config:!oo_first_master"
  31. l_upgrade_repo_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  32. l_upgrade_no_proxy_hosts: "oo_masters_to_config"
  33. l_upgrade_health_check_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
  34. l_upgrade_verify_targets_hosts: "oo_masters_to_config"
  35. l_upgrade_docker_target_hosts: "oo_masters_to_config:oo_etcd_to_config"
  36. l_upgrade_excluder_hosts: "oo_masters_to_config"
  37. openshift_protect_installed_version: False
  38. - name: Flag pre-upgrade checks complete for hosts without errors
  39. hosts: oo_masters_to_config:oo_etcd_to_config
  40. tasks:
  41. - set_fact:
  42. pre_upgrade_complete: True
  43. - import_playbook: label_nodes.yml
  44. # To upgrade, we need masters to be capable of signing certificates
  45. - hosts: oo_masters
  46. serial: 1
  47. tasks:
  48. - name: Enable core bootstrapping components
  49. include_tasks: ../../../../openshift-master/private/tasks/enable_bootstrap.yml
  50. - name: Place shim commands on the masters before we begin the upgrade
  51. import_role:
  52. name: openshift_control_plane
  53. tasks_from: static_shim
  54. # TODO: need to verify settings about the bootstrap configs
  55. # 1. Does network policy match the master config
  56. - name: Configure components that must be available prior to upgrade
  57. hosts: oo_first_master
  58. pre_tasks:
  59. - name: Enable core bootstrapping components
  60. include_tasks: ../../../../openshift-master/private/tasks/enable_bootstrap_config.yml
  61. - name: Ensure the master bootstrap config has bootstrapping config
  62. import_role:
  63. name: openshift_node_group
  64. tasks_from: upgrade
  65. - name: Enable node configuration reconciliation
  66. import_role:
  67. name: openshift_node_group
  68. tasks_from: sync
  69. roles:
  70. - role: openshift_sdn
  71. when: openshift_use_openshift_sdn | default(True) | bool
  72. - name: Update master nodes
  73. hosts: oo_masters
  74. serial: 1
  75. tasks:
  76. - import_role:
  77. name: openshift_node
  78. tasks_from: upgrade_pre
  79. - import_role:
  80. name: openshift_node
  81. tasks_from: upgrade
  82. vars:
  83. r_node_dynamic_config_name: "{{ openshift_node_group_name | default('node-config-master') }}"
  84. - import_playbook: ../upgrade_control_plane.yml
  85. vars:
  86. openshift_release: '3.10'
  87. - import_playbook: ../post_control_plane.yml
  88. - hosts: oo_masters
  89. tasks:
  90. - import_role:
  91. name: openshift_web_console
  92. tasks_from: remove_old_asset_config