mirror of https://github.com/k3s-io/k3s
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.
29 lines
815 B
29 lines
815 B
5 years ago
|
#!/bin/bash
|
||
|
|
||
9 months ago
|
. ./tests/docker/test-setup-sonobuoy
|
||
5 years ago
|
|
||
3 years ago
|
export NUM_SERVERS=1
|
||
|
export NUM_AGENTS=1
|
||
3 years ago
|
export SERVER_1_ARGS="--cluster-init"
|
||
5 years ago
|
|
||
|
server-post-hook() {
|
||
|
if [ $1 -eq 1 ]; then
|
||
|
local url=$(cat $TEST_DIR/servers/1/metadata/url)
|
||
|
export SERVER_ARGS="--server $url"
|
||
|
fi
|
||
|
}
|
||
|
export -f server-post-hook
|
||
3 years ago
|
|
||
|
test-post-hook() {
|
||
2 years ago
|
if [[ $1 -eq 0 ]] || [[ ! -f "$TEST_DIR/sonobuoy/plugins/e2e/results/global/e2e.log" ]]; then
|
||
|
return $1
|
||
3 years ago
|
fi
|
||
2 years ago
|
local failures=$(awk '/^Summarizing .* Failures?:$/,0' "$TEST_DIR/sonobuoy/plugins/e2e/results/global/e2e.log")
|
||
3 years ago
|
# Ignore sonobuoy failures if only these flaky tests have failed
|
||
9 months ago
|
flakyFails=$( grep -scF -f ./tests/docker/flaky-tests <<< "$failures" )
|
||
3 years ago
|
totalFails=$( grep -scF -e "[Fail]" <<< "$failures" )
|
||
|
[ "$totalFails" -le "$flakyFails" ]
|
||
|
}
|
||
|
export -f test-post-hook
|
||
|
|