mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-08 06:01:12 +02:00
Bringing up to the latest version in 1.x series. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
40 lines
1.0 KiB
Bash
Executable File
40 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eou pipefail
|
|
|
|
source ./hack/test/e2e.sh
|
|
|
|
export CAPI_VERSION="${CAPI_VERSION:-1.4.0}"
|
|
export CAPA_VERSION="${CAPA_VERSION:-1.5.2}"
|
|
export CAPG_VERSION="${CAPG_VERSION:-1.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 \
|
|
--config hack/test/clusterctl.yaml \
|
|
--core "cluster-api:v${CAPI_VERSION}" \
|
|
--control-plane "talos" \
|
|
--infrastructure "aws:v${CAPA_VERSION},gcp:v${CAPG_VERSION}" \
|
|
--bootstrap "talos"
|
|
|
|
# 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
|