Little helper to run CNCF's k3s in Docker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k3d/tests/extra_test_k3s_versions.sh

44 lines
1.3 KiB

#!/bin/bash
CURR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
[ -d "$CURR_DIR" ] || { echo "FATAL: no current dir (maybe running in zsh?)"; exit 1; }
K3S_VERSIONS=("v1.17.14-k3s2" "v1.18.12-k3s1" "v1.19.2-k3s1" "v1.19.4-k3s1")
FAILED_TESTS=()
# shellcheck source=./common.sh
source "$CURR_DIR/common.sh"
for version in "${K3S_VERSIONS[@]}"; do
info "Creating a cluster with k3s version $version ..."
$EXE cluster create c1 --wait --timeout 60s --image "rancher/k3s:$version" || failed "could not create cluster with k3s version $version"
info "Checking we have access to the cluster ..."
check_clusters "c1" || failed "error checking cluster with k3s version $version"
info "Deleting cluster ..."
$EXE cluster delete c1 || failed "could not delete the cluster c1"
K3S_IMAGE_TAG="$version" $CURR_DIR/test_full_lifecycle.sh
if [[ $? -eq 1 ]]; then
FAILED_TESTS+=("full_lifecycle: $version")
fi
K3S_IMAGE_TAG="$version" $CURR_DIR/test_multi_master.sh
if [[ $? -eq 1 ]]; then
FAILED_TESTS+=("multi_master: $version")
fi
done
if [[ ${#FAILED_TESTS[@]} -gt 0 ]]; then
warn "FAILED TESTS"
for failed_test in "${FAILED_TESTS[@]}"; do
warn "- $failed_test"
done
else
passed "Successfully verified all given k3s versions"
exit 0
fi