upgrade.yml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. # Only needed for 3.10, remove in 3.11.
  11. - import_tasks: migrate_idproviders.yml
  12. - import_tasks: static_shim.yml
  13. - import_tasks: upgrade/upgrade_scheduler.yml
  14. # master_config_hook is passed in from upgrade play.
  15. - include_tasks: "upgrade/{{ master_config_hook }}"
  16. when: master_config_hook is defined
  17. - import_tasks: set_loopback_context.yml
  18. - name: Check for ca-bundle.crt
  19. stat:
  20. path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  21. register: ca_bundle_stat
  22. failed_when: false
  23. - name: Check for ca.crt
  24. stat:
  25. path: "{{ openshift.common.config_base }}/master/ca.crt"
  26. register: ca_crt_stat
  27. failed_when: false
  28. - name: Migrate ca.crt to ca-bundle.crt
  29. command: mv ca.crt ca-bundle.crt
  30. args:
  31. chdir: "{{ openshift.common.config_base }}/master"
  32. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  33. - name: Link ca.crt to ca-bundle.crt
  34. file:
  35. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  36. path: "{{ openshift.common.config_base }}/master/ca.crt"
  37. state: link
  38. force: yes
  39. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  40. # Anyone upgrading to 3.7 or 3.9 should've had their certs updated to be
  41. # compatible with this so this is the only valid value for internal registry
  42. - name: Update imagePolicyConfig.internalRegistryHostname
  43. yedit:
  44. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  45. key: "imagePolicyConfig.internalRegistryHostname"
  46. value: "docker-registry.default.svc:5000"
  47. # TODO(michaelgugino): Remove in 3.11
  48. - name: Add new network config section to master conf
  49. yedit:
  50. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  51. key: networkConfig.clusterNetworks
  52. value: "{{ l_new_config_clusterNetworks }}"
  53. # l_existing_config_master_config is set via playbooks/init/basic_facts.yml
  54. when: l_existing_config_master_config.networkConfig.clusterNetworks is not defined
  55. # TODO(michaelgugino): Remove in 3.11
  56. - name: Remove old network config section in master conf
  57. yedit:
  58. src: /etc/origin/master/master-config.yaml
  59. key: "{{ item }}"
  60. state: absent
  61. with_items:
  62. - networkConfig.clusterNetworkCIDR
  63. - networkConfig.hostSubnetLength
  64. - name: Create the master service env file if it does not exist
  65. template:
  66. src: "master.env.j2"
  67. dest: "{{ openshift.common.config_base }}/master/master.env"
  68. force: no
  69. - name: Update oreg value
  70. yedit:
  71. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  72. key: 'imageConfig.format'
  73. value: "{{ oreg_url | default(oreg_url_master) }}"
  74. when: oreg_url is defined or oreg_url_master is defined
  75. - name: Change default node selector to compute=true
  76. yedit:
  77. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  78. key: 'projectConfig.defaultNodeSelector'
  79. value: '{{ hostvars[groups.oo_first_master.0].l_osm_default_node_selector }}'
  80. when: openshift_upgrade_target is version_compare('3.9', '>=')
  81. - name: Remove use of pod presets from master config
  82. yedit:
  83. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  84. key: 'admissionConfig.pluginConfig.PodPreset'
  85. state: absent
  86. - name: Find current value for runtime-config
  87. yedit:
  88. src: "/tmp/master-config.yaml"
  89. key: "kubernetesMasterConfig.apiServerArguments.runtime-config"
  90. state: list
  91. register: runtime_config
  92. - name: Set the runtime-config to exclude pod presets
  93. yedit:
  94. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  95. key: "kubernetesMasterConfig.apiServerArguments.runtime-config"
  96. value: "{{ runtime_config.result | join(',') | regex_replace('(?:,)*apis/settings\\.k8s\\.io/v1alpha1=true','') }}"
  97. when: runtime_config.result
  98. - name: Remove old service information
  99. file:
  100. path: "{{ item }}"
  101. state: absent
  102. with_items:
  103. - /etc/systemd/system/atomic-openshift-master-api.service
  104. - /etc/systemd/system/atomic-openshift-master-controllers.service
  105. - /etc/systemd/system/origin-master-api.service
  106. - /etc/systemd/system/origin-master-controllers.service
  107. - /usr/lib/systemd/system/atomic-openshift-master-api.service
  108. - /usr/lib/systemd/system/atomic-openshift-master-controllers.service
  109. - /usr/lib/systemd/system/origin-master-api.service
  110. - /usr/lib/systemd/system/origin-master-controllers.service
  111. - name: reload systemd units
  112. command: systemctl daemon-reload