upgrade.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. ---
  2. - import_tasks: static_shim.yml
  3. - import_tasks: upgrade/upgrade_scheduler.yml
  4. # master_config_hook is passed in from upgrade play.
  5. - include_tasks: "upgrade/{{ master_config_hook }}"
  6. when: master_config_hook is defined
  7. - import_tasks: set_loopback_context.yml
  8. - name: Check for ca-bundle.crt
  9. stat:
  10. path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  11. get_checksum: false
  12. get_attributes: false
  13. get_mime: false
  14. register: ca_bundle_stat
  15. failed_when: false
  16. - name: Check for ca.crt
  17. stat:
  18. path: "{{ openshift.common.config_base }}/master/ca.crt"
  19. get_checksum: false
  20. get_mime: false
  21. register: ca_crt_stat
  22. failed_when: false
  23. - name: Migrate ca.crt to ca-bundle.crt
  24. command: mv ca.crt ca-bundle.crt
  25. args:
  26. chdir: "{{ openshift.common.config_base }}/master"
  27. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  28. - name: Link ca.crt to ca-bundle.crt
  29. file:
  30. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  31. path: "{{ openshift.common.config_base }}/master/ca.crt"
  32. state: link
  33. force: yes
  34. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  35. # Anyone upgrading to 3.7 or 3.9 should've had their certs updated to be
  36. # compatible with this so this is the only valid value for internal registry
  37. - name: Update imagePolicyConfig.internalRegistryHostname
  38. yedit:
  39. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  40. key: "imagePolicyConfig.internalRegistryHostname"
  41. value: "docker-registry.default.svc:5000"
  42. - name: Update oreg value
  43. yedit:
  44. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  45. key: 'imageConfig.format'
  46. value: "{{ openshift_imageconfig_format }}"
  47. - name: Change default node selector to compute=true
  48. yedit:
  49. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  50. key: 'projectConfig.defaultNodeSelector'
  51. value: '{{ hostvars[groups.oo_first_master.0].l_osm_default_node_selector }}'
  52. when: openshift_upgrade_target is version('3.9', '>=')
  53. - name: Remove use of pod presets from master config
  54. yedit:
  55. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  56. key: 'admissionConfig.pluginConfig.PodPreset'
  57. state: absent
  58. - name: Find current value for runtime-config
  59. yedit:
  60. src: "/tmp/master-config.yaml"
  61. key: "kubernetesMasterConfig.apiServerArguments.runtime-config"
  62. state: list
  63. register: runtime_config
  64. - name: Set the runtime-config to exclude pod presets
  65. yedit:
  66. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  67. key: "kubernetesMasterConfig.apiServerArguments.runtime-config"
  68. value: "{{ runtime_config.result | join(',') | regex_replace('(?:,)*apis/settings\\.k8s\\.io/v1alpha1=true','') }}"
  69. when: runtime_config.result