diff --git a/CHANGELOG.md b/CHANGELOG.md index a89746060..d632912d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Added - plume: Add new AWS regions, af-south-1, ap-southeast-3, eu-south-1 ([#274](https://github.com/flatcar-linux/mantle/pull/274)) - kubernetes test for release 1.23.0 ([#275](https://github.com/flatcar-linux/mantle/pull/275)) +- arm64 kubeadm test for `calico` CNI ([#278](https://github.com/flatcar-linux/mantle/pull/278)) ## [0.18.0] - 12/01/2022 ### Security diff --git a/kola/tests/kubeadm/kubeadm.go b/kola/tests/kubeadm/kubeadm.go index 32f874cbc..c44eec5f1 100644 --- a/kola/tests/kubeadm/kubeadm.go +++ b/kola/tests/kubeadm/kubeadm.go @@ -132,12 +132,6 @@ func init() { testParams["CNI"] = CNI testParams["Release"] = version - architectures := []string{"amd64"} - - if CNI != "calico" { - architectures = append(architectures, "arm64") - } - register.Register(®ister.Test{ Name: fmt.Sprintf("kubeadm.%s.%s.base", version, CNI), Distros: []string{"cl"}, @@ -145,7 +139,6 @@ func init() { Run: func(c cluster.TestCluster) { kubeadmBaseTest(c, testParams) }, - Architectures: architectures, }) } }