post_control_plane.yml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. ---
  2. ####################################################################################
  3. # Post upgrade - Upgrade web console, default router, default registry, and examples
  4. ####################################################################################
  5. - name: Upgrade web console
  6. hosts: oo_first_master
  7. roles:
  8. - role: openshift_web_console
  9. when:
  10. - openshift_web_console_install | default(true) | bool
  11. - name: Install admin console
  12. hosts: oo_first_master
  13. roles:
  14. - role: openshift_console
  15. when:
  16. - openshift_console_install | default(true) | bool
  17. # upgrade registry and router pods; we defer waiting for these pods
  18. # until after the next play to hopefully save some time polling.
  19. - import_playbook: ../../../openshift-hosted/private/upgrade.yml
  20. - name: Upgrade manageiq, templates, examples
  21. hosts: oo_first_master
  22. roles:
  23. - lib_utils
  24. - openshift_manageiq
  25. - role: openshift_project_request_template
  26. when: openshift_project_request_template_manage
  27. # Create the new templates shipped in 3.2, existing templates are left
  28. # unmodified. This prevents the subsequent role definition for
  29. # openshift_examples from failing when trying to replace templates that do
  30. # not already exist. We could have potentially done a replace --force to
  31. # create and update in one step.
  32. - role: openshift_examples
  33. when: openshift_install_examples | default(true) | bool
  34. # Update the existing templates
  35. - role: openshift_examples
  36. when: openshift_install_examples | default(true) | bool
  37. openshift_examples_import_command: replace
  38. # Poll for registry and router pods, redeploy registry certs if needed.
  39. - import_playbook: ../../../openshift-hosted/private/upgrade_poll_and_check_certs.yml
  40. when: openshift_hosted_manage_registry | default(True)
  41. # Check for warnings to be printed at the end of the upgrade:
  42. - name: Clean up and display warnings
  43. hosts: oo_masters_to_config
  44. tags:
  45. - always
  46. gather_facts: no
  47. roles:
  48. - role: openshift_excluder
  49. r_openshift_excluder_action: enable
  50. post_tasks:
  51. # Check if any masters are using pluginOrderOverride and warn if so, only for 1.3/3.3 and beyond:
  52. - name: grep pluginOrderOverride
  53. command: grep pluginOrderOverride {{ openshift.common.config_base }}/master/master-config.yaml
  54. register: grep_plugin_order_override
  55. changed_when: false
  56. failed_when: false
  57. - name: Warn if pluginOrderOverride is in use in master-config.yaml
  58. debug:
  59. msg: "WARNING pluginOrderOverride is being deprecated in master-config.yaml, please see https://docs.openshift.com/container-platform/latest/architecture/additional_concepts/admission_controllers.html for more information."
  60. when:
  61. - not (grep_plugin_order_override is skipped)
  62. - grep_plugin_order_override.rc == 0
  63. - name: Warn if shared-resource-viewer could not be updated
  64. debug:
  65. msg: "WARNING the shared-resource-viewer role could not be upgraded to 3.6 spec because it's marked protected, please see https://bugzilla.redhat.com/show_bug.cgi?id=1493213"
  66. when:
  67. - __shared_resource_viewer_protected | default(false)
  68. - import_playbook: upgrade_components.yml