mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 08:19:23 +00:00
Closes a gap in test coverage. Also fixes an issue where args and hooks
from previous test runs were not being reset for subsequent runs.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
(cherry picked from commit 52e450f033)
16 lines
298 B
Bash
16 lines
298 B
Bash
#!/bin/bash
|
|
|
|
. ./scripts/test-setup-sonobuoy
|
|
|
|
export NUM_SERVERS=2
|
|
export NUM_AGENTS=0
|
|
export SERVER_1_ARGS="--cluster-init"
|
|
|
|
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
|