Update defaults versions to last checksums

This commit is contained in:
Max Gautier
2025-03-13 12:07:32 +01:00
parent 1528bdda39
commit 5e083a5370
4 changed files with 20 additions and 20 deletions

View File

@@ -94,14 +94,14 @@ Note: Upstart/SysV init based OS types are not supported.
## Supported Components ## Supported Components
- Core - Core
- [kubernetes](https://github.com/kubernetes/kubernetes) v1.31.4 - [kubernetes](https://github.com/kubernetes/kubernetes) v1.31.7
- [etcd](https://github.com/etcd-io/etcd) v3.5.16 - [etcd](https://github.com/etcd-io/etcd) v3.5.19
- [docker](https://www.docker.com/) v26.1 - [docker](https://www.docker.com/) v26.1
- [containerd](https://containerd.io/) v1.7.24 - [containerd](https://containerd.io/) v1.7.26
- [cri-o](http://cri-o.io/) v1.31.0 (experimental: see [CRI-O Note](docs/CRI/cri-o.md). Only on fedora, ubuntu and centos based OS) - [cri-o](http://cri-o.io/) v1.31.6 (experimental: see [CRI-O Note](docs/CRI/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.4.1
- [calico](https://github.com/projectcalico/calico) v3.29.1 - [calico](https://github.com/projectcalico/calico) v3.29.2
- [cilium](https://github.com/cilium/cilium) v1.15.9 - [cilium](https://github.com/cilium/cilium) v1.15.9
- [flannel](https://github.com/flannel-io/flannel) v0.22.0 - [flannel](https://github.com/flannel-io/flannel) v0.22.0
- [kube-ovn](https://github.com/alauda/kube-ovn) v1.12.21 - [kube-ovn](https://github.com/alauda/kube-ovn) v1.12.21

View File

@@ -17,7 +17,7 @@ kube_token_dir: "{{ kube_config_dir }}/tokens"
kube_api_anonymous_auth: true kube_api_anonymous_auth: true
## 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.31.4 kube_version: v1.31.7
# Where the binaries will be downloaded. # Where the binaries will be downloaded.
# Note: ensure that you've enough disk space (about 1G) # Note: ensure that you've enough disk space (about 1G)

View File

@@ -74,12 +74,12 @@ image_arch: "{{ host_architecture | default('amd64') }}"
# Versions # Versions
crun_version: 1.17 crun_version: 1.17
runc_version: v1.2.3 runc_version: v1.2.5
kata_containers_version: 3.1.3 kata_containers_version: 3.1.3
youki_version: 0.4.1 youki_version: 0.4.1
gvisor_version: 20240305 gvisor_version: 20240305
containerd_version: 1.7.24 containerd_version: 1.7.26
cri_dockerd_version: 0.3.11 cri_dockerd_version: 0.3.16
# this is relevant when container_manager == 'docker' # this is relevant when container_manager == 'docker'
docker_containerd_version: 1.6.32 docker_containerd_version: 1.6.32
@@ -99,7 +99,7 @@ github_image_repo: "ghcr.io"
# TODO(mattymo): Move calico versions to roles/network_plugins/calico/defaults # TODO(mattymo): Move calico versions to roles/network_plugins/calico/defaults
# after migration to container download # after migration to container download
calico_version: "v3.29.1" calico_version: "v3.29.2"
calico_ctl_version: "{{ calico_version }}" calico_ctl_version: "{{ calico_version }}"
calico_cni_version: "{{ calico_version }}" calico_cni_version: "{{ calico_version }}"
calico_policy_version: "{{ calico_version }}" calico_policy_version: "{{ calico_version }}"
@@ -111,10 +111,10 @@ calico_apiserver_enabled: false
flannel_version: "v0.22.0" flannel_version: "v0.22.0"
flannel_cni_version: "v1.1.2" flannel_cni_version: "v1.1.2"
weave_version: 2.8.7 weave_version: 2.8.7
cni_version: "v1.4.0" cni_version: "v1.4.1"
cilium_version: "v1.15.9" cilium_version: "v1.15.9"
cilium_cli_version: "v0.16.0" cilium_cli_version: "v0.16.24"
cilium_enable_hubble: false cilium_enable_hubble: false
kube_ovn_version: "v1.12.21" kube_ovn_version: "v1.12.21"
@@ -136,9 +136,9 @@ pod_infra_supported_versions:
pod_infra_version: "{{ pod_infra_supported_versions[kube_major_version] }}" pod_infra_version: "{{ pod_infra_supported_versions[kube_major_version] }}"
etcd_supported_versions: etcd_supported_versions:
v1.31: "v3.5.16" v1.31: "v3.5.19"
v1.30: "v3.5.16" v1.30: "v3.5.19"
v1.29: "v3.5.16" v1.29: "v3.5.19"
etcd_version: "{{ etcd_supported_versions[kube_major_version] }}" etcd_version: "{{ etcd_supported_versions[kube_major_version] }}"
crictl_supported_versions: crictl_supported_versions:
@@ -148,9 +148,9 @@ 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.31: v1.31.0 v1.31: v1.31.6
v1.30: v1.30.3 v1.30: v1.30.11
v1.29: v1.29.1 v1.29: v1.29.13
crio_version: "{{ crio_supported_versions[kube_major_version] }}" crio_version: "{{ crio_supported_versions[kube_major_version] }}"
# Scheduler plugins doesn't build for K8s 1.29 yet # Scheduler plugins doesn't build for K8s 1.29 yet

View File

@@ -18,7 +18,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.31.4 kube_version: v1.31.7
## The minimum version working ## The minimum version working
kube_version_min_required: v1.29.0 kube_version_min_required: v1.29.0