mirror of https://github.com/k3s-io/k3s
Merge pull request #13030 from justinsb/aws_jenkins_parallel
AWS: e2e: change instance default size, create kubernetes-e2e-aws-parallelpull/6/head
commit
29369b0dde
|
@ -80,8 +80,9 @@ if [[ "${KUBERNETES_PROVIDER}" == "aws" ]]; then
|
|||
: ${NUM_MINIONS:="100"}
|
||||
: ${GINKGO_TEST_ARGS:="--ginkgo.focus=\[Performance\ssuite\]"}
|
||||
else
|
||||
: ${MASTER_SIZE:="t2.small"}
|
||||
: ${NUM_MINIONS:="2"}
|
||||
: ${MASTER_SIZE:="m3.large"}
|
||||
: ${MINION_SIZE:="m3.large"}
|
||||
: ${NUM_MINIONS:="3"}
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@ -209,6 +210,20 @@ case ${JOB_NAME} in
|
|||
NUM_MINIONS="6"
|
||||
;;
|
||||
|
||||
# Runs all non-flaky tests on AWS in parallel.
|
||||
kubernetes-e2e-aws-parallel)
|
||||
: ${E2E_CLUSTER_NAME:="jenkins-aws-e2e-parallel"}
|
||||
: ${E2E_NETWORK:="e2e-parallel"}
|
||||
: ${GINKGO_PARALLEL:="y"}
|
||||
: ${GINKGO_TEST_ARGS:="--ginkgo.skip=$(join_regex_allow_empty \
|
||||
${GCE_DEFAULT_SKIP_TESTS[@]:+${GCE_DEFAULT_SKIP_TESTS[@]}} \
|
||||
${GCE_PARALLEL_SKIP_TESTS[@]:+${GCE_PARALLEL_SKIP_TESTS[@]}} \
|
||||
${GCE_PARALLEL_FLAKY_TESTS[@]:+${GCE_PARALLEL_FLAKY_TESTS[@]}} \
|
||||
)"}
|
||||
# Override AWS defaults.
|
||||
NUM_MINIONS="6"
|
||||
;;
|
||||
|
||||
# Runs the flaky tests on GCE in parallel.
|
||||
kubernetes-e2e-gce-parallel-flaky)
|
||||
: ${E2E_CLUSTER_NAME:="parallel-flaky"}
|
||||
|
|
Loading…
Reference in New Issue