upgrade.yml 2.9 KB

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