Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First pass at a GKE large cluster Jenkins job #24627

Merged
merged 1 commit into from
Apr 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions hack/jenkins/job-configs/kubernetes-jenkins/kubernetes-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}'

Expand Down