Enabled Autoscaling e2e test for cpu utilization

This commit is contained in:
Piotr Szczesniak
2015-08-14 11:50:19 +02:00
parent 8dcbebae5e
commit fb44d5e045
2 changed files with 53 additions and 8 deletions

View File

@@ -102,6 +102,7 @@ GCE_FLAKY_TESTS=(
# Tests which are not able to be run in parallel.
GCE_PARALLEL_SKIP_TESTS=(
${GCE_DEFAULT_SKIP_TESTS[@]:+${GCE_DEFAULT_SKIP_TESTS[@]}}
"Autoscaling"
"Etcd"
"NetworkingNew"
"Nodes\sNetwork"
@@ -127,6 +128,7 @@ GCE_PARALLEL_FLAKY_TESTS=(
# Tests that should not run on soak cluster.
GCE_SOAK_CONTINUOUS_SKIP_TESTS=(
"Autoscaling"
"Density.*30\spods"
"Elasticsearch"
"Etcd.*SIGKILL"
@@ -141,6 +143,10 @@ GCE_SOAK_CONTINUOUS_SKIP_TESTS=(
"Skipped"
)
GCE_RELEASE_SKIP_TESTS=(
"Autoscaling"
)
# Define environment variables based on the Jenkins project name.
case ${JOB_NAME} in
# Runs all non-flaky tests on GCE, sequentially.
@@ -283,6 +289,7 @@ case ${JOB_NAME} in
: ${E2E_NETWORK:="e2e-gce-release"}
: ${GINKGO_TEST_ARGS:="--ginkgo.skip=$(join_regex_allow_empty \
${GCE_DEFAULT_SKIP_TESTS[@]:+${GCE_DEFAULT_SKIP_TESTS[@]}} \
${GCE_RELEASE_SKIP_TESTS[@]:+${GCE_RELEASE_SKIP_TESTS[@]}} \
${GCE_FLAKY_TESTS[@]:+${GCE_FLAKY_TESTS[@]}} \
)"}
: ${KUBE_GCE_INSTANCE_PREFIX="e2e-gce"}