From 2060ceaa0b16be04a61a00e0085e25889ffe613a Mon Sep 17 00:00:00 2001 From: Spencer Smith Date: Fri, 25 Jun 2021 09:16:26 -0400 Subject: [PATCH] chore: add CAPI version to CI setup This PR makes sure we pin to a known CAPI version because with the new v0.4.x released, we'll fail until we support the v1alpha4 APIs. Signed-off-by: Spencer Smith --- hack/test/e2e-capi.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hack/test/e2e-capi.sh b/hack/test/e2e-capi.sh index ecde98ea5..b97b297ee 100755 --- a/hack/test/e2e-capi.sh +++ b/hack/test/e2e-capi.sh @@ -4,6 +4,7 @@ set -eou pipefail source ./hack/test/e2e.sh +export CAPI_VERSION="0.3.19" export CABPT_VERSION="0.2.0" export CACPPT_VERSION="0.1.0" export CAPA_VERSION="0.6.5" @@ -25,6 +26,7 @@ export AWS_B64ENCODED_CREDENTIALS=${AWS_SVC_ACCT} set -x ${CLUSTERCTL} init \ + --core "cluster-api:v${CAPI_VERSION}" \ --control-plane "talos:v${CACPPT_VERSION}" \ --infrastructure "aws:v${CAPA_VERSION},gcp:v${CAPG_VERSION}" \ --bootstrap "talos:v${CABPT_VERSION}"