mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
This allows to use kubespray_defaults (once) instead of redefining defaults in the tests. Test test files becomes imported tasks rather thand standalone playbooks.
97 lines
2.5 KiB
Bash
Executable File
97 lines
2.5 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
if [[ -v TESTCASE ]]; then
|
|
TESTCASE_FILE=files/${TESTCASE}.yml
|
|
else
|
|
TESTCASE_FILE=common_vars.yml
|
|
TESTCASE=default
|
|
fi
|
|
|
|
echo "TESTCASE is $TESTCASE"
|
|
|
|
source tests/files/$TESTCASE || true
|
|
|
|
# Check out latest tag if testing upgrade
|
|
if [ "${UPGRADE_TEST}" != "false" ]; then
|
|
git fetch --all && git checkout $(git describe --tags --abbrev=0)
|
|
# Checkout the current tests/ directory ; even when testing old version,
|
|
# we want the up-to-date test setup/provisionning
|
|
git checkout "${CI_COMMIT_SHA}" -- tests/
|
|
pip install --no-compile --no-cache-dir -r requirements.txt
|
|
fi
|
|
|
|
export ANSIBLE_BECOME=true
|
|
export ANSIBLE_BECOME_USER=root
|
|
|
|
# Test collection build and install by installing our collection, emptying our repository, adding
|
|
# cluster.yml, reset.yml, and remote-node.yml files that simply point to our collection's playbooks, and then
|
|
# running the same tests as before
|
|
if [[ "${TESTCASE}" =~ "collection" ]]; then
|
|
# Build and install collection
|
|
ansible-galaxy collection build
|
|
ansible-galaxy collection install kubernetes_sigs-kubespray-*.tar.gz
|
|
fi
|
|
run_playbook () {
|
|
if [[ "${TESTCASE}" =~ "collection" ]]; then
|
|
playbook=kubernetes_sigs.kubespray.$1
|
|
else
|
|
playbook=$1.yml
|
|
fi
|
|
shift
|
|
|
|
ansible-playbook \
|
|
-e @tests/common_vars.yml \
|
|
-e @tests/${TESTCASE_FILE} \
|
|
-e local_release_dir=${PWD}/downloads \
|
|
"$@" \
|
|
${playbook}
|
|
}
|
|
|
|
|
|
## START KUBESPRAY
|
|
|
|
# Create cluster
|
|
run_playbook cluster
|
|
|
|
# Repeat deployment if testing upgrade
|
|
if [ "${UPGRADE_TEST}" != "false" ]; then
|
|
git checkout "${CI_COMMIT_SHA}"
|
|
|
|
pip install --no-compile --no-cache-dir -r requirements.txt
|
|
|
|
case "${UPGRADE_TEST}" in
|
|
"basic")
|
|
run_playbook cluster
|
|
;;
|
|
"graceful")
|
|
run_playbook upgrade-cluster
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
# Test control plane recovery
|
|
if [ "${RECOVER_CONTROL_PLANE_TEST}" != "false" ]; then
|
|
run_playbook reset --limit "${RECOVER_CONTROL_PLANE_TEST_GROUPS}" -e reset_confirmation=yes
|
|
run_playbook recover-control-plane -e etcd_retries=10 --limit "etcd:kube_control_plane"
|
|
fi
|
|
|
|
# Run tests
|
|
ansible-playbook \
|
|
-e @tests/common_vars.yml \
|
|
-e @tests/${TESTCASE_FILE} \
|
|
-e local_release_dir=${PWD}/downloads \
|
|
tests/testcases/tests.yml
|
|
|
|
# Test node removal procedure
|
|
if [ "${REMOVE_NODE_CHECK}" = "true" ]; then
|
|
run_playbook remove-node -e skip_confirmation=yes -e node=${REMOVE_NODE_NAME}
|
|
fi
|
|
|
|
# Clean up at the end, this is to allow stage1 tests to include cleanup test
|
|
if [ "${RESET_CHECK}" = "true" ]; then
|
|
run_playbook reset -e reset_confirmation=yes
|
|
fi
|