mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-10 12:18:52 +03:00
[kubernetes] Support kubernetes 1.29 (#10820)
* [kubernetes] Make kubernetes 1.29.1 default * [cri-o]: support cri-o 1.29 Use "crio status" instead of "crio-status" for cri-o >=1.29.0 * Remove GAed feature gates SecCompDefault The SecCompDefault feature gate was removed since k8s 1.29 https://github.com/kubernetes/kubernetes/pull/121246
This commit is contained in:
8
roles/container-engine/cri-o/tasks/load_vars.yml
Normal file
8
roles/container-engine/cri-o/tasks/load_vars.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
- name: Cri-o | include vars/v1.28.yml
|
||||
include_vars: v1.28.yml
|
||||
when: crio_version is version("v1.29.0", operator="<")
|
||||
|
||||
- name: Cri-o | include vars/v1.29.yml
|
||||
include_vars: v1.29.yml
|
||||
when: crio_version is version("v1.29.0", operator=">=")
|
||||
Reference in New Issue
Block a user