mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
Skip tests that violate version skew policy
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
This commit is contained in:
parent
9e66f975d5
commit
0af55a830a
@ -314,6 +314,13 @@ test-setup() {
|
||||
return 1
|
||||
fi
|
||||
|
||||
SERVER_MINOR=$(awk -F. '{print $2}' <<<${K3S_IMAGE_SERVER:-$K3S_IMAGE})
|
||||
AGENT_MINOR=$(awk -F. '{print $2}' <<<${K3S_IMAGE_AGENT:-$K3S_IMAGE})
|
||||
if [ $AGENT_MINOR -gt $SERVER_MINOR ]; then
|
||||
echo "Agent minor version cannot be newer than server - not supported by Kubernetes version skew policy"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
local setupFile=./scripts/test-setup-${TEST_TYPE}
|
||||
[ -f $setupFile ] && source $setupFile
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user