From 622cc4d594e9b8b7f47287967cbe36000339e459 Mon Sep 17 00:00:00 2001 From: Jeff Grafton Date: Tue, 3 Nov 2015 15:15:58 -0800 Subject: [PATCH] Create Jenkins projects for scalability tests on 1.1 --- hack/jenkins/e2e.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/hack/jenkins/e2e.sh b/hack/jenkins/e2e.sh index 2f5a5132007..bb08e69e7c3 100755 --- a/hack/jenkins/e2e.sh +++ b/hack/jenkins/e2e.sh @@ -396,6 +396,28 @@ case ${JOB_NAME} in TEST_CLUSTER_RESYNC_PERIOD="--min-resync-period=12h" ;; + # Runs the performance/scalability tests on GCE using the latest 1.1 ci + # release. A larger cluster is used. + kubernetes-e2e-gce-scalability-1.1) + : ${E2E_CLUSTER_NAME:="jenkins-gce-e2e-scalability-1.1"} + : ${E2E_NETWORK:="e2e-scalability-1-1"} + : ${GINKGO_TEST_ARGS:="--ginkgo.focus=Performance\ssuite"} + : ${JENKINS_PUBLISHED_VERSION:="ci/latest-1.1"} + : ${KUBE_GCE_INSTANCE_PREFIX:="e2e-scalability-1-1"} + : ${KUBE_GCS_STAGING_PATH_SUFFIX:="scalability-1.1"} + : ${PROJECT:="k8s-e2e-gce-scalability-1-1"} + # Override GCE defaults. + E2E_ZONE="us-east1-b" + MASTER_SIZE="n1-standard-4" + MINION_SIZE="n1-standard-2" + MINION_DISK_SIZE="50GB" + NUM_MINIONS="100" + # Reduce logs verbosity + TEST_CLUSTER_LOG_LEVEL="--v=2" + # Increase resync period to simulate production + TEST_CLUSTER_RESYNC_PERIOD="--min-resync-period=12h" + ;; + # Sets up the GCE soak cluster weekly using the latest CI release. kubernetes-soak-weekly-deploy-gce) : ${E2E_CLUSTER_NAME:="gce-soak-weekly"}