mirror of
https://github.com/siderolabs/talos.git
synced 2025-12-15 22:41:55 +01:00
This PR pulls in an updated cluster api aws version, ensuring the CRDs are closer to what's expected when we patch the CAPA image later in the setup. We will eventually move to 0.6.5 as soon as it's cut. Signed-off-by: Spencer Smith <robertspencersmith@gmail.com>
43 lines
1.3 KiB
Bash
Executable File
43 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eou pipefail
|
|
|
|
source ./hack/test/e2e.sh
|
|
|
|
export CABPT_VERSION="0.2.0-alpha.10"
|
|
export CACPPT_VERSION="0.1.0-alpha.11"
|
|
export CAPA_VERSION="0.6.4"
|
|
export CAPG_VERSION="0.3.0"
|
|
|
|
# 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
|
|
set +x
|
|
export GCP_B64ENCODED_CREDENTIALS=${GCE_SVC_ACCT}
|
|
export AWS_B64ENCODED_CREDENTIALS=${AWS_SVC_ACCT}
|
|
set -x
|
|
|
|
${CLUSTERCTL} init \
|
|
--control-plane "talos:v${CACPPT_VERSION}" \
|
|
--infrastructure "aws:v${CAPA_VERSION},gcp:v${CAPG_VERSION}" \
|
|
--bootstrap "talos:v${CABPT_VERSION}"
|
|
|
|
# Temporarily override CAPA image so secrets backend can be turned off
|
|
${KUBECTL} patch deploy -n capa-system capa-controller-manager --type='json' \
|
|
-p='[{"op": "replace", "path": "/spec/template/spec/containers/0/image", "value": "docker.io/rsmitty/cluster-api-aws-controller-amd64:dev"}]'
|
|
|
|
# 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
|