Use last patch version as default for several components
- runc - containerd - nerdctl - etcd - crio - kubelet, kubectl, kubeadmpull/11516/head
parent
921f00c0ac
commit
d00b530efb
|
@ -161,11 +161,11 @@ Note: Upstart/SysV init based OS types are not supported.
|
||||||
## Supported Components
|
## Supported Components
|
||||||
|
|
||||||
- Core
|
- Core
|
||||||
- [kubernetes](https://github.com/kubernetes/kubernetes) v1.28.10
|
- [kubernetes](https://github.com/kubernetes/kubernetes) v1.28.14
|
||||||
- [etcd](https://github.com/etcd-io/etcd) v3.5.10
|
- [etcd](https://github.com/etcd-io/etcd) v3.5.16
|
||||||
- [docker](https://www.docker.com/) v20.10 (see note)
|
- [docker](https://www.docker.com/) v20.10 (see note)
|
||||||
- [containerd](https://containerd.io/) v1.7.13
|
- [containerd](https://containerd.io/) v1.7.22
|
||||||
- [cri-o](http://cri-o.io/) v1.27 (experimental: see [CRI-O Note](docs/cri-o.md). Only on fedora, ubuntu and centos based OS)
|
- [cri-o](http://cri-o.io/) v1.28 (experimental: see [CRI-O Note](docs/cri-o.md). Only on fedora, ubuntu and centos based OS)
|
||||||
- Network Plugin
|
- Network Plugin
|
||||||
- [cni-plugins](https://github.com/containernetworking/plugins) v1.2.0
|
- [cni-plugins](https://github.com/containernetworking/plugins) v1.2.0
|
||||||
- [calico](https://github.com/projectcalico/calico) v3.26.4
|
- [calico](https://github.com/projectcalico/calico) v3.26.4
|
||||||
|
|
|
@ -76,11 +76,11 @@ image_arch: "{{ host_architecture | default('amd64') }}"
|
||||||
# Versions
|
# Versions
|
||||||
kubeadm_version: "{{ kube_version }}"
|
kubeadm_version: "{{ kube_version }}"
|
||||||
crun_version: 1.8.5
|
crun_version: 1.8.5
|
||||||
runc_version: v1.1.12
|
runc_version: v1.1.14
|
||||||
kata_containers_version: 3.1.3
|
kata_containers_version: 3.1.3
|
||||||
youki_version: 0.1.0
|
youki_version: 0.1.0
|
||||||
gvisor_version: 20230807
|
gvisor_version: 20230807
|
||||||
containerd_version: 1.7.13
|
containerd_version: 1.7.22
|
||||||
cri_dockerd_version: 0.3.4
|
cri_dockerd_version: 0.3.4
|
||||||
|
|
||||||
# this is relevant when container_manager == 'docker'
|
# this is relevant when container_manager == 'docker'
|
||||||
|
@ -126,7 +126,7 @@ kube_ovn_dpdk_version: "19.11-{{ kube_ovn_version }}"
|
||||||
kube_router_version: "v2.0.0"
|
kube_router_version: "v2.0.0"
|
||||||
multus_version: "v3.8"
|
multus_version: "v3.8"
|
||||||
helm_version: "v3.13.1"
|
helm_version: "v3.13.1"
|
||||||
nerdctl_version: "1.7.1"
|
nerdctl_version: "1.7.7"
|
||||||
krew_version: "v0.4.4"
|
krew_version: "v0.4.4"
|
||||||
skopeo_version: "v1.13.2"
|
skopeo_version: "v1.13.2"
|
||||||
|
|
||||||
|
@ -134,9 +134,9 @@ skopeo_version: "v1.13.2"
|
||||||
kube_major_version: "{{ kube_version | regex_replace('^v([0-9])+\\.([0-9]+)\\.[0-9]+', 'v\\1.\\2') }}"
|
kube_major_version: "{{ kube_version | regex_replace('^v([0-9])+\\.([0-9]+)\\.[0-9]+', 'v\\1.\\2') }}"
|
||||||
|
|
||||||
etcd_supported_versions:
|
etcd_supported_versions:
|
||||||
v1.28: "v3.5.10"
|
v1.28: "v3.5.16"
|
||||||
v1.27: "v3.5.10"
|
v1.27: "v3.5.16"
|
||||||
v1.26: "v3.5.10"
|
v1.26: "v3.5.16"
|
||||||
etcd_version: "{{ etcd_supported_versions[kube_major_version] }}"
|
etcd_version: "{{ etcd_supported_versions[kube_major_version] }}"
|
||||||
|
|
||||||
crictl_supported_versions:
|
crictl_supported_versions:
|
||||||
|
@ -146,8 +146,8 @@ crictl_supported_versions:
|
||||||
crictl_version: "{{ crictl_supported_versions[kube_major_version] }}"
|
crictl_version: "{{ crictl_supported_versions[kube_major_version] }}"
|
||||||
|
|
||||||
crio_supported_versions:
|
crio_supported_versions:
|
||||||
v1.28: v1.28.1
|
v1.28: v1.28.10
|
||||||
v1.27: v1.27.1
|
v1.27: v1.27.6
|
||||||
v1.26: v1.26.4
|
v1.26: v1.26.4
|
||||||
crio_version: "{{ crio_supported_versions[kube_major_version] }}"
|
crio_version: "{{ crio_supported_versions[kube_major_version] }}"
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ kubelet_fail_swap_on: true
|
||||||
kubelet_swap_behavior: LimitedSwap
|
kubelet_swap_behavior: LimitedSwap
|
||||||
|
|
||||||
## Change this to use another Kubernetes version, e.g. a current beta release
|
## Change this to use another Kubernetes version, e.g. a current beta release
|
||||||
kube_version: v1.28.10
|
kube_version: v1.28.14
|
||||||
|
|
||||||
## The minimum version working
|
## The minimum version working
|
||||||
kube_version_min_required: v1.26.0
|
kube_version_min_required: v1.26.0
|
||||||
|
|
Loading…
Reference in New Issue