Skip to content

Commit

Permalink
kubeadm: remove v1.27.6
Browse files Browse the repository at this point in the history
Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
  • Loading branch information
tormath1 committed Jun 17, 2024
1 parent 665dd78 commit c11a8a2
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions kola/tests/kubeadm/kubeadm.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,19 +102,6 @@ var (
"PodSubnet": "192.168.0.0/17",
"cgroupv1": false,
},
"v1.27.6": map[string]interface{}{
"HelmVersion": "v3.13.2",
"MinMajorVersion": 3374,
// from https://github.com/flannel-io/flannel/releases
"FlannelVersion": "v0.22.0",
// from https://github.com/cilium/cilium/releases
"CiliumVersion": "1.12.5",
// from https://github.com/cilium/cilium-cli/releases
"CiliumCLIVersion": "v0.12.12",
"DownloadDir": "/opt/bin",
"PodSubnet": "192.168.0.0/17",
"cgroupv1": false,
},
}
plog = capnslog.NewPackageLogger("github.com/flatcar/mantle", "kola/tests/kubeadm")
etcdConfig = conf.ContainerLinuxConfig(`
Expand All @@ -125,11 +112,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 c11a8a2

Please sign in to comment.