post_control_plane.yml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. - openshift_hosted_templates
  35. # Update the existing templates
  36. - role: openshift_examples
  37. when: openshift_install_examples | default(true) | bool
  38. openshift_examples_import_command: replace
  39. - role: openshift_hosted_templates
  40. openshift_hosted_templates_import_command: replace
  41. # Poll for registry and router pods, redeploy registry certs if needed.
  42. - import_playbook: ../../../openshift-hosted/private/upgrade_poll_and_check_certs.yml
  43. when: openshift_hosted_manage_registry | default(True)
  44. # Check for warnings to be printed at the end of the upgrade:
  45. - name: Clean up and display warnings
  46. hosts: oo_masters_to_config
  47. tags:
  48. - always
  49. gather_facts: no
  50. roles:
  51. - role: openshift_excluder
  52. r_openshift_excluder_action: enable
  53. post_tasks:
  54. # Check if any masters are using pluginOrderOverride and warn if so, only for 1.3/3.3 and beyond:
  55. - name: grep pluginOrderOverride
  56. command: grep pluginOrderOverride {{ openshift.common.config_base }}/master/master-config.yaml
  57. register: grep_plugin_order_override
  58. changed_when: false
  59. failed_when: false
  60. - name: Warn if pluginOrderOverride is in use in master-config.yaml
  61. debug:
  62. 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."
  63. when:
  64. - not (grep_plugin_order_override is skipped)
  65. - grep_plugin_order_override.rc == 0
  66. - name: Warn if shared-resource-viewer could not be updated
  67. debug:
  68. 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"
  69. when:
  70. - __shared_resource_viewer_protected | default(false)
  71. - import_playbook: upgrade_components.yml