post_control_plane.yml 3.0 KB

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