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.
30 lines
700 B
30 lines
700 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
all_services=(
|
||
|
coredns
|
||
|
local-path-provisioner
|
||
|
metrics-server
|
||
|
traefik
|
||
|
)
|
||
|
|
||
|
export NUM_SERVERS=1
|
||
|
export NUM_AGENTS=1
|
||
|
export WAIT_SERVICES="${all_services[@]}"
|
||
|
|
||
|
agent-pre-hook() {
|
||
2 years ago
|
timeout --foreground 2m bash -c "wait-for-nodes $(( NUM_SERVERS ))"
|
||
2 years ago
|
local server=$(cat $TEST_DIR/servers/1/metadata/name)
|
||
|
docker exec $server k3s token create --ttl=5m --description=Test > $TEST_DIR/metadata/secret
|
||
|
}
|
||
|
export -f agent-pre-hook
|
||
|
|
||
|
start-test() {
|
||
|
echo "Cluster is up with ephemeral join token"
|
||
|
}
|
||
|
export -f start-test
|
||
|
|
||
|
# --- create a basic cluster with an agent joined using the ephemeral token and check for functionality
|
||
|
LABEL=BOOTSTRAP-TOKEN run-test
|
||
|
|
||
|
cleanup-test-env
|