post_control_plane.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. ---
  2. ###############################################################################
  3. # Post upgrade - Upgrade default router, default registry and examples
  4. ###############################################################################
  5. - name: Upgrade default router and default registry
  6. hosts: oo_first_master
  7. vars:
  8. registry_image: "{{ openshift.master.registry_url | replace( '${component}', 'docker-registry' ) |
  9. replace ( '${version}', openshift_image_tag ) }}"
  10. router_image: "{{ openshift.master.registry_url | replace( '${component}', 'haproxy-router' ) |
  11. replace ( '${version}', openshift_image_tag ) }}"
  12. registry_console_image: "{{ openshift.master.registry_url | regex_replace ( '(origin|ose)-\\${component}', 'registry-console') |
  13. replace ( '${version}', 'v' ~ openshift.common.short_version ) }}"
  14. pre_tasks:
  15. - name: Load lib_openshift modules
  16. import_role:
  17. name: lib_openshift
  18. - name: Collect all routers
  19. oc_obj:
  20. state: list
  21. kind: pods
  22. all_namespaces: True
  23. selector: 'router'
  24. register: all_routers
  25. - set_fact:
  26. haproxy_routers: "{{ all_routers.results.results[0]['items'] |
  27. oo_pods_match_component(openshift_deployment_type, 'haproxy-router') |
  28. oo_select_keys_from_list(['metadata']) }}"
  29. when:
  30. - all_routers.results.returncode == 0
  31. - set_fact: haproxy_routers=[]
  32. when:
  33. - all_routers.results.returncode != 0
  34. - name: Update router image to current version
  35. oc_edit:
  36. kind: dc
  37. name: "{{ item['labels']['deploymentconfig'] }}"
  38. namespace: "{{ item['namespace'] }}"
  39. content:
  40. spec.template.spec.containers[0].image: "{{ router_image }}"
  41. with_items: "{{ haproxy_routers }}"
  42. when:
  43. - all_routers.results.returncode == 0
  44. - name: Check for default registry
  45. oc_obj:
  46. state: list
  47. kind: dc
  48. name: docker-registry
  49. register: _default_registry
  50. - name: Update registry image to current version
  51. oc_edit:
  52. kind: dc
  53. name: docker-registry
  54. namespace: default
  55. content:
  56. spec.template.spec.containers[0].image: "{{ registry_image }}"
  57. when:
  58. - _default_registry.results.results[0] != {}
  59. - name: Check for registry-console
  60. oc_obj:
  61. state: list
  62. kind: dc
  63. name: registry-console
  64. register: _registry_console
  65. when:
  66. - openshift.common.deployment_type != 'origin'
  67. - name: Update registry-console image to current version
  68. oc_edit:
  69. kind: dc
  70. name: registry-console
  71. namespace: default
  72. content:
  73. spec.template.spec.containers[0].image: "{{ registry_console_image }}"
  74. when:
  75. - openshift.common.deployment_type != 'origin'
  76. - _registry_console.results.results[0] != {}
  77. roles:
  78. - openshift_manageiq
  79. - role: openshift_project_request_template
  80. when: openshift_project_request_template_manage
  81. # Create the new templates shipped in 3.2, existing templates are left
  82. # unmodified. This prevents the subsequent role definition for
  83. # openshift_examples from failing when trying to replace templates that do
  84. # not already exist. We could have potentially done a replace --force to
  85. # create and update in one step.
  86. - role: openshift_examples
  87. when: openshift_install_examples | default(true) | bool
  88. - openshift_hosted_templates
  89. # Update the existing templates
  90. - role: openshift_examples
  91. when: openshift_install_examples | default(true) | bool
  92. registry_url: "{{ openshift.master.registry_url }}"
  93. openshift_examples_import_command: replace
  94. - role: openshift_hosted_templates
  95. registry_url: "{{ openshift.master.registry_url }}"
  96. openshift_hosted_templates_import_command: replace
  97. # Check for warnings to be printed at the end of the upgrade:
  98. - name: Clean up and display warnings
  99. hosts: oo_masters_to_config
  100. tags:
  101. - always
  102. gather_facts: no
  103. roles:
  104. - role: openshift_excluder
  105. r_openshift_excluder_action: enable
  106. post_tasks:
  107. # Check if any masters are using pluginOrderOverride and warn if so, only for 1.3/3.3 and beyond:
  108. - name: grep pluginOrderOverride
  109. command: grep pluginOrderOverride {{ openshift.common.config_base }}/master/master-config.yaml
  110. register: grep_plugin_order_override
  111. changed_when: false
  112. failed_when: false
  113. - name: Warn if pluginOrderOverride is in use in master-config.yaml
  114. debug:
  115. 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."
  116. when:
  117. - not (grep_plugin_order_override is skipped)
  118. - grep_plugin_order_override.rc == 0
  119. - name: Warn if shared-resource-viewer could not be updated
  120. debug:
  121. 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"
  122. when:
  123. - __shared_resource_viewer_protected | default(false)