mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
15 lines
394 B
Bash
Executable File
15 lines
394 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export NUM_SERVERS=1
|
|
export NUM_AGENTS=1
|
|
export SERVER_ARGS='--no-deploy=traefik'
|
|
export WAIT_SERVICES='coredns local-path-provisioner metrics-server'
|
|
|
|
export sonobuoyParallelArgs=(--e2e-focus='\[Conformance\]' --e2e-skip='\[Serial\]' --e2e-parallel=y)
|
|
export sonobuoySerialArgs=(--e2e-focus='\[Serial\].*\[Conformance\]')
|
|
|
|
start-test() {
|
|
sonobuoy-test $@
|
|
}
|
|
export -f start-test
|