mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-04 22:29:51 +00:00
* Initial drone vagrant pipeline Signed-off-by: Derek Nola <derek.nola@suse.com> * Build e2e test image * Add ci flag to secretsencryption * Fix vagrant log on secretsencryption * Add cron conformance pipeline * Add string output for nodes * Switch snapshot restore for upgrade cluster Signed-off-by: Derek Nola <derek.nola@suse.com> * Added IPv6 check and agent restart on e2e test utils Signed-off-by: Roberto Bonafiglia <roberto.bonafiglia@suse.com> * Drone: Cleanup E2E VMs on test panic (#7104) * Cleanup leftover VMs in E2E pipeline * Clean E2E VMs before testing (#7109) * Cleanup VMs proper Signed-off-by: Derek Nola <derek.nola@suse.com> * Dont run most pipelines on nightly cron * Improve RunCmdOnNode error * Pin upgradecluster to v1.24 Signed-off-by: Derek Nola <derek.nola@suse.com> --------- Signed-off-by: Derek Nola <derek.nola@suse.com> Signed-off-by: Roberto Bonafiglia <roberto.bonafiglia@suse.com> Co-authored-by: Roberto Bonafiglia <roberto.bonafiglia@suse.com>
47 lines
2.2 KiB
Bash
Executable File
47 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
nodeOS=${1:-"generic/ubuntu2004"}
|
|
servercount=${2:-3}
|
|
agentcount=${3:-1}
|
|
db=${4:-"etcd"}
|
|
hardened=${5:-""}
|
|
|
|
E2E_EXTERNAL_DB=$db && export E2E_EXTERNAL_DB
|
|
E2E_REGISTRY=true && export E2E_REGISTRY
|
|
|
|
cd
|
|
cd k3s && git pull --rebase origin master
|
|
/usr/local/go/bin/go mod tidy
|
|
|
|
cd tests/e2e
|
|
OS=$(echo "$nodeOS"|cut -d'/' -f2)
|
|
echo "$OS"
|
|
|
|
vagrant global-status | awk '/running/'|cut -c1-7| xargs -r -d '\n' -n 1 -- vagrant destroy -f
|
|
E2E_RELEASE_CHANNEL="commit" && export E2E_RELEASE_CHANNEL
|
|
|
|
echo 'RUNNING DUALSTACK TEST'
|
|
E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v dualstack/dualstack_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci |tee k3s_"$OS".log
|
|
|
|
echo 'RUNNING CLUSTER VALIDATION TEST'
|
|
E2E_REGISTRY=true E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v validatecluster/validatecluster_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -agentCount=$((agentcount)) -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
|
|
|
echo 'RUNNING SECRETS ENCRYPTION TEST'
|
|
/usr/local/go/bin/go test -v secretsencryption/secretsencryption_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -timeout=1h -json -ci | tee -a k3s_"$OS".log
|
|
|
|
echo 'RUNNING SPLIT SERVER VALIDATION TEST'
|
|
E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v splitserver/splitserver_test.go -nodeOS="$nodeOS" -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
|
|
|
echo 'RUNNING STARTUP VALIDATION TEST'
|
|
/usr/local/go/bin/go test -v startup/startup_test.go -nodeOS="$nodeOS" -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
|
|
|
echo 'RUNNING EXTERNAL IP TEST'
|
|
/usr/local/go/bin/go test -v externalip/externalip_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
|
|
|
echo 'RUNNING SNAPSHOT AND RESTORE TEST'
|
|
/usr/local/go/bin/go test -v snapshotrestore/snapshotrestore_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
|
|
|
E2E_RELEASE_CHANNEL="latest" && export E2E_RELEASE_CHANNEL
|
|
echo 'RUNNING CLUSTER UPGRADE TEST'
|
|
E2E_REGISTRY=true /usr/local/go/bin/go test -v upgradecluster/upgradecluster_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -agentCount=$((agentcount)) -timeout=1h -json -ci | tee -a k3s_"$OS".log
|