mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
7101af36bb
* Update to v1.29.0 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Update to v1.29.0 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Update go to 1.21.5 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update golangci-lint Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update flannel to 0.23.0-k3s1 This update uses k3s' fork of flannel to allow the removal of multicluster cidr flag logic from the code Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fix flannel calls Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update cri-tools to version v1.29.0-k3s1 Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Remove GOEXPERIMENT=nounified from arm builds Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Skip golangci-lint Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Fix setup logging with newer go version Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Move logging flags to components arguments Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * add sysctl commands to the test script Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Update scripts/test Signed-off-by: Brad Davidson <brad@oatmail.org> * disable secretsencryption tests Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> --------- Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> Signed-off-by: Brad Davidson <brad@oatmail.org> Co-authored-by: Brad Davidson <brad@oatmail.org>
103 lines
2.3 KiB
Bash
Executable File
103 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
cd $(dirname $0)/..
|
|
|
|
. ./scripts/version.sh
|
|
. ./scripts/test-helpers
|
|
|
|
# sysctl commands
|
|
sysctl -w fs.inotify.max_queued_events=16384
|
|
sysctl -w fs.inotify.max_user_instances=8192
|
|
sysctl -w fs.inotify.max_user_watches=524288
|
|
sysctl -w user.max_inotify_instances=8192
|
|
sysctl -w user.max_inotify_watches=524288
|
|
|
|
artifacts=$(pwd)/dist/artifacts
|
|
mkdir -p $artifacts
|
|
|
|
# ---
|
|
|
|
docker ps
|
|
|
|
# ---
|
|
|
|
. ./scripts/test-run-basics
|
|
echo "Did test-run-basics $?"
|
|
|
|
. ./scripts/test-run-compat
|
|
echo "Did test-run-compat $?"
|
|
|
|
. ./scripts/test-run-hardened
|
|
echo "Did test-run-hardened $?"
|
|
|
|
. ./scripts/test-run-cacerts
|
|
echo "Did test-run-cacerts $?"
|
|
|
|
. ./scripts/test-run-bootstraptoken
|
|
echo "Did test-run-bootstraptoken $?"
|
|
|
|
. ./scripts/test-run-upgrade
|
|
echo "Did test-run-upgrade $?"
|
|
|
|
. ./scripts/test-run-etcd
|
|
echo "Did test-run-etcd $?"
|
|
|
|
. ./scripts/test-run-lazypull
|
|
echo "Did test-run-lazypull $?"
|
|
|
|
# ---
|
|
|
|
[ "$ARCH" != 'amd64' ] && \
|
|
early-exit "Skipping remaining tests, images not available for $ARCH."
|
|
|
|
# ---
|
|
|
|
if [ "$DRONE_BUILD_EVENT" = 'tag' ]; then
|
|
E2E_OUTPUT=$artifacts test-run-sonobuoy serial
|
|
echo "Did test-run-sonobuoy serial $?"
|
|
E2E_OUTPUT=$artifacts test-run-sonobuoy parallel
|
|
echo "Did test-run-sonobuoy parallel $?"
|
|
early-exit 'Skipping remaining tests on tag.'
|
|
fi
|
|
# ---
|
|
|
|
if [ "$DRONE_BUILD_EVENT" = 'cron' ]; then
|
|
E2E_OUTPUT=$artifacts test-run-sonobuoy serial
|
|
echo "Did test-run-sonobuoy serial $?"
|
|
test-run-sonobuoy etcd serial
|
|
echo "Did test-run-sonobuoy-etcd serial $?"
|
|
test-run-sonobuoy mysql serial
|
|
echo "Did test-run-sonobuoy-mysqk serial $?"
|
|
test-run-sonobuoy postgres serial
|
|
echo "Did test-run-sonobuoy-postgres serial $?"
|
|
|
|
# Wait until all serial tests have finished
|
|
delay=15
|
|
(
|
|
set +x
|
|
while [ $(count-running-tests) -ge 1 ]; do
|
|
sleep $delay
|
|
done
|
|
)
|
|
|
|
E2E_OUTPUT=$artifacts test-run-sonobuoy parallel
|
|
echo "Did test-run-sonobuoy parallel $?"
|
|
test-run-sonobuoy etcd parallel
|
|
echo "Did test-run-sonobuoy-etcd parallel $?"
|
|
test-run-sonobuoy mysql parallel
|
|
echo "Did test-run-sonobuoy-mysql parallel $?"
|
|
test-run-sonobuoy postgres parallel
|
|
echo "Did test-run-sonobuoy-postgres parallel $?"
|
|
fi
|
|
|
|
# Wait until all tests have finished
|
|
delay=15
|
|
(
|
|
set +x
|
|
while [ $(count-running-tests) -ge 1 ]; do
|
|
sleep $delay
|
|
done
|
|
)
|
|
|
|
exit 0
|