post_control_plane.yml 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. openshift_deployment_type: "{{ deployment_type }}"
  9. registry_image: "{{ openshift.master.registry_url | replace( '${component}', 'docker-registry' ) | replace ( '${version}', openshift_image_tag ) }}"
  10. router_image: "{{ openshift.master.registry_url | replace( '${component}', 'haproxy-router' ) | replace ( '${version}', openshift_image_tag ) }}"
  11. oc_cmd: "{{ openshift.common.client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig"
  12. roles:
  13. - openshift_manageiq
  14. # Create the new templates shipped in 3.2, existing templates are left
  15. # unmodified. This prevents the subsequent role definition for
  16. # openshift_examples from failing when trying to replace templates that do
  17. # not already exist. We could have potentially done a replace --force to
  18. # create and update in one step.
  19. - openshift_examples
  20. - openshift_hosted_templates
  21. # Update the existing templates
  22. - role: openshift_examples
  23. registry_url: "{{ openshift.master.registry_url }}"
  24. openshift_examples_import_command: replace
  25. - role: openshift_hosted_templates
  26. registry_url: "{{ openshift.master.registry_url }}"
  27. openshift_hosted_templates_import_command: replace
  28. pre_tasks:
  29. # TODO: remove temp_skip_router_registry_upgrade variable. This is a short term hack
  30. # to allow ops to use this control plane upgrade, without triggering router/registry
  31. # upgrade which has not yet been synced with their process.
  32. - name: Collect all routers
  33. command: >
  34. {{ oc_cmd }} get pods --all-namespaces -l 'router' -o json
  35. register: all_routers
  36. failed_when: false
  37. changed_when: false
  38. when: temp_skip_router_registry_upgrade is not defined
  39. - set_fact: haproxy_routers="{{ (all_routers.stdout | from_json)['items'] | oo_pods_match_component(openshift_deployment_type, 'haproxy-router') | oo_select_keys_from_list(['metadata']) }}"
  40. when: all_routers.rc == 0 and temp_skip_router_registry_upgrade is not defined
  41. - set_fact: haproxy_routers=[]
  42. when: all_routers.rc != 0 and temp_skip_router_registry_upgrade is not defined
  43. - name: Update router image to current version
  44. when: all_routers.rc == 0 and temp_skip_router_registry_upgrade is not defined
  45. command: >
  46. {{ oc_cmd }} patch dc/{{ item['labels']['deploymentconfig'] }} -n {{ item['namespace'] }} -p
  47. '{"spec":{"template":{"spec":{"containers":[{"name":"router","image":"{{ router_image }}","livenessProbe":{"tcpSocket":null,"httpGet":{"path": "/healthz", "port": 1936, "host": "localhost", "scheme": "HTTP"},"initialDelaySeconds":10,"timeoutSeconds":1}}]}}}}'
  48. --api-version=v1
  49. with_items: "{{ haproxy_routers }}"
  50. # AUDIT:changed_when_note: `false` not being set here. What we
  51. # need to do is check the current router image version and see if
  52. # this task needs to be ran.
  53. - name: Check for default registry
  54. command: >
  55. {{ oc_cmd }} get -n default dc/docker-registry
  56. register: _default_registry
  57. failed_when: false
  58. changed_when: false
  59. when: temp_skip_router_registry_upgrade is not defined
  60. - name: Update registry image to current version
  61. when: _default_registry.rc == 0 and temp_skip_router_registry_upgrade is not defined
  62. command: >
  63. {{ oc_cmd }} patch dc/docker-registry -n default -p
  64. '{"spec":{"template":{"spec":{"containers":[{"name":"registry","image":"{{ registry_image }}"}]}}}}'
  65. --api-version=v1
  66. # AUDIT:changed_when_note: `false` not being set here. What we
  67. # need to do is check the current registry image version and see
  68. # if this task needs to be ran.
  69. # Check for warnings to be printed at the end of the upgrade:
  70. - name: Check for warnings
  71. hosts: oo_masters_to_config
  72. tasks:
  73. # Check if any masters are using pluginOrderOverride and warn if so, only for 1.3/3.3 and beyond:
  74. - command: >
  75. grep pluginOrderOverride {{ openshift.common.config_base }}/master/master-config.yaml
  76. register: grep_plugin_order_override
  77. when: openshift.common.version_gte_3_3_or_1_3 | bool
  78. failed_when: false
  79. - name: Warn if pluginOrderOverride is in use in master-config.yaml
  80. debug: 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."
  81. when: not grep_plugin_order_override | skipped and grep_plugin_order_override.rc == 0
  82. - include: ../reset_excluder.yml
  83. tags:
  84. - always