Skip to content

Commit

Permalink
Revert "kubeadm: skip calico / cilium tests for now on brightbox"
Browse files Browse the repository at this point in the history
This reverts commit bced13d.

Signed-off-by: Mathieu Tortuyaux <[email protected]>
  • Loading branch information
tormath1 committed Apr 12, 2024
1 parent b81adba commit 361bd43
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions kola/tests/kubeadm/kubeadm.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ func init() {
}
}

cni := CNI

register.Register(&register.Test{
Name: fmt.Sprintf("kubeadm.%s.%s%s.base", version, CNI, cgroupSuffix),
Distros: []string{"cl"},
Expand All @@ -181,11 +179,7 @@ func init() {
// * LTS (3033) does not have the network-kargs service pulled in:
// https://github.com/flatcar/coreos-overlay/pull/1848/commits/9e04bc12c3c7eb38da05173dc0ff7beaefa13446
// Let's skip this test for < 3034 on ESX
// * For Cilium Calico/CNI on Brightbox:
// unprocessable_entity: User data is too long (maximum is 16384 characters)
// Should be reenabled once we switch to Butane provisioning because of internal compression.
return (version.LessThan(semver.Version{Major: 3034}) && platform == "esx") ||
(platform == "brightbox" && (cni == "cilium" || cni == "calico"))
return (version.LessThan(semver.Version{Major: 3034}) && platform == "esx")
},
})
}
Expand Down

0 comments on commit 361bd43

Please sign in to comment.