First pass at a GKE large cluster Jenkins job

Runs a 1000 node GKE parallel e2e test. On demand only. We'll add more
tests as I see what actually works - this is going to have some
flakiness on its own.
pull/6/head
Zach Loafman 2016-04-21 14:36:49 -07:00
parent 5555f6e118
commit fa2a516fce
1 changed files with 12 additions and 0 deletions

View File

@ -235,6 +235,18 @@
export GINKGO_PARALLEL="y"
export ZONE="us-central1-f"
export ADDITIONAL_ZONES="us-central1-a,us-central1-b"
- 'gke-large-cluster':
description: 'Run all non-flaky, non-slow, non-disruptive, non-feature tests on GKE, in parallel on a large (1000 node) GKE cluster'
timeout: 300
emails: 'zml@google.com'
cron-string: ''
trigger-job: ''
job-env: |
export PROJECT="gke-large-cluster-jenkins"
export GINKGO_TEST_ARGS="--ginkgo.skip=\[Slow\]|\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]"
export GINKGO_PARALLEL="y"
export ZONE="us-central1-b"
export NUM_NODES=1000
jobs:
- 'kubernetes-e2e-{suffix}'