mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
19 lines
304 B
Bash
19 lines
304 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
|