upgrade.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. get_checksum: false
  20. get_attributes: false
  21. get_mime: false
  22. register: ca_bundle_stat
  23. failed_when: false
  24. - name: Check for ca.crt
  25. stat:
  26. path: "{{ openshift.common.config_base }}/master/ca.crt"
  27. get_checksum: false
  28. get_mime: false
  29. register: ca_crt_stat
  30. failed_when: false
  31. - name: Migrate ca.crt to ca-bundle.crt
  32. command: mv ca.crt ca-bundle.crt
  33. args:
  34. chdir: "{{ openshift.common.config_base }}/master"
  35. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  36. - name: Link ca.crt to ca-bundle.crt
  37. file:
  38. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  39. path: "{{ openshift.common.config_base }}/master/ca.crt"
  40. state: link
  41. force: yes
  42. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  43. # Anyone upgrading to 3.7 or 3.9 should've had their certs updated to be
  44. # compatible with this so this is the only valid value for internal registry
  45. - name: Update imagePolicyConfig.internalRegistryHostname
  46. yedit:
  47. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  48. key: "imagePolicyConfig.internalRegistryHostname"
  49. value: "docker-registry.default.svc:5000"
  50. - name: Update oreg value
  51. yedit:
  52. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  53. key: 'imageConfig.format'
  54. value: "{{ oreg_url }}"
  55. when: oreg_url is defined
  56. - name: Change default node selector to compute=true
  57. yedit:
  58. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  59. key: 'projectConfig.defaultNodeSelector'
  60. value: '{{ hostvars[groups.oo_first_master.0].l_osm_default_node_selector }}'
  61. when: openshift_upgrade_target is version_compare('3.9', '>=')
  62. - name: Remove use of pod presets from master config
  63. yedit:
  64. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  65. key: 'admissionConfig.pluginConfig.PodPreset'
  66. state: absent
  67. - name: Find current value for runtime-config
  68. yedit:
  69. src: "/tmp/master-config.yaml"
  70. key: "kubernetesMasterConfig.apiServerArguments.runtime-config"
  71. state: list
  72. register: runtime_config
  73. - name: Set the runtime-config to exclude pod presets
  74. yedit:
  75. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  76. key: "kubernetesMasterConfig.apiServerArguments.runtime-config"
  77. value: "{{ runtime_config.result | join(',') | regex_replace('(?:,)*apis/settings\\.k8s\\.io/v1alpha1=true','') }}"
  78. when: runtime_config.result
  79. - name: reload systemd units
  80. command: systemctl daemon-reload