Support deploying kubernetes 1.23 (#8323)

* Ensure entries for 1.23 are added for supported_versions vars

* cri-o: add support for kubernetes 1.23 but still use cri-o 1.22

* kubescheduler-config: diferentiate config versions based on kube_version
This commit is contained in:
Cristian Calin
2021-12-21 11:38:46 +02:00
committed by GitHub
parent b49ae8c21d
commit c1954ff918
5 changed files with 14 additions and 3 deletions

View File

@@ -94,6 +94,7 @@ krew_version: "v0.4.2"
# Get kubernetes major version (i.e. 1.17.4 => 1.17)
kube_major_version: "{{ kube_version | regex_replace('^v([0-9])+\\.([0-9]+)\\.[0-9]+', 'v\\1.\\2') }}"
crictl_supported_versions:
v1.23: "v1.22.0"
v1.22: "v1.22.0"
v1.21: "v1.21.0"
v1.20: "v1.20.0"
@@ -745,6 +746,7 @@ csi_livenessprobe_image_repo: "{{ kube_image_repo }}/sig-storage/livenessprobe"
csi_livenessprobe_image_tag: "v2.5.0"
snapshot_controller_supported_versions:
v1.23: "v4.2.1"
v1.22: "v4.2.1"
v1.21: "v4.2.1"
v1.20: "v4.0.0"