Skip to content

Commit

Permalink
Merge pull request #534 from flatcar/tormath1/kubernetes
Browse files Browse the repository at this point in the history
kubernetes: add 1.30
  • Loading branch information
tormath1 committed Jun 18, 2024
2 parents 665dd78 + 5bdbfc6 commit aaf7801
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions kola/tests/kubeadm/kubeadm.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ var (
// testConfig holds params for various kubernetes releases
// and the nested params are used to render script templates
testConfig = map[string]map[string]interface{}{
"v1.29.2": map[string]interface{}{
"v1.30.1": map[string]interface{}{
"HelmVersion": "v3.13.2",
"MinMajorVersion": 3374,
// from https://github.com/flannel-io/flannel/releases
Expand All @@ -89,7 +89,7 @@ var (
"PodSubnet": "192.168.0.0/17",
"cgroupv1": false,
},
"v1.28.7": map[string]interface{}{
"v1.29.2": map[string]interface{}{
"HelmVersion": "v3.13.2",
"MinMajorVersion": 3374,
// from https://github.com/flannel-io/flannel/releases
Expand All @@ -102,7 +102,7 @@ var (
"PodSubnet": "192.168.0.0/17",
"cgroupv1": false,
},
"v1.27.6": map[string]interface{}{
"v1.28.7": map[string]interface{}{
"HelmVersion": "v3.13.2",
"MinMajorVersion": 3374,
// from https://github.com/flannel-io/flannel/releases
Expand All @@ -125,11 +125,11 @@ etcd:

func init() {
testConfigCgroupV1 := map[string]map[string]interface{}{}
testConfigCgroupV1["v1.27.6"] = map[string]interface{}{}
for k, v := range testConfig["v1.27.6"] {
testConfigCgroupV1["v1.27.6"][k] = v
testConfigCgroupV1["v1.28.7"] = map[string]interface{}{}
for k, v := range testConfig["v1.28.7"] {
testConfigCgroupV1["v1.28.7"][k] = v
}
testConfigCgroupV1["v1.27.6"]["cgroupv1"] = true
testConfigCgroupV1["v1.28.7"]["cgroupv1"] = true

registerTests := func(config map[string]map[string]interface{}) {
for version, params := range config {
Expand Down

0 comments on commit aaf7801

Please sign in to comment.