mirror of
https://github.com/siderolabs/talos.git
synced 2025-11-25 12:41:15 +01:00
This PR will update the CI testing to make use of our control plane provider, as well as the other CAPI components. Signed-off-by: Spencer Smith <robertspencersmith@gmail.com>
38 lines
1013 B
Bash
Executable File
38 lines
1013 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eou pipefail
|
|
|
|
source ./hack/test/e2e.sh
|
|
|
|
export CABPT_VERSION="0.2.0-alpha.0"
|
|
export CACPPT_VERSION="0.1.0-alpha.2"
|
|
export CAPA_VERSION="0.5.4"
|
|
|
|
# We need to override this here since e2e.sh will set it to ${TMP}/capi/kubeconfig.
|
|
export KUBECONFIG="/tmp/e2e/docker/kubeconfig"
|
|
|
|
# CABPT
|
|
export CABPT_NS="cabpt-system"
|
|
|
|
# Install envsubst
|
|
apk add --no-cache gettext
|
|
|
|
# Env vars for cloud accounts
|
|
export GCP_B64ENCODED_CREDENTIALS=${GCE_SVC_ACCT}
|
|
export AWS_B64ENCODED_CREDENTIALS=${AWS_SVC_ACCT}
|
|
|
|
${CLUSTERCTL} init \
|
|
--control-plane "talos:v${CACPPT_VERSION}" \
|
|
--infrastructure "aws:v${CAPA_VERSION}" \
|
|
--bootstrap "talos:v${CABPT_VERSION}"
|
|
|
|
cat ${PWD}/hack/test/capi/components-capg.yaml| envsubst | ${KUBECTL} apply -f -
|
|
|
|
# Wait for the talosconfig
|
|
timeout=$(($(date +%s) + ${TIMEOUT}))
|
|
until ${KUBECTL} wait --timeout=1s --for=condition=Ready -n ${CABPT_NS} pods --all; do
|
|
[[ $(date +%s) -gt $timeout ]] && exit 1
|
|
echo 'Waiting to CABPT pod to be available...'
|
|
sleep 5
|
|
done
|