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

Restart job 5m after the previous failure. #24175

Merged
merged 1 commit into from
Apr 15, 2016
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion hack/jenkins/job-configs/global.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@
name: global
disable_job: false
emails: '$DEFAULT_RECIPIENTS'
cron-string: 'H/30 * * * *'
cron-string: 'H/30 * * * *' # Set a 30m floor to start jobs.
sq-cron-string: 'H/5 * * * *' # Lower floor to 5m for blocking jobs.
# How long to wait after sending TERM to send KILL (minutes)
kill-timeout: 15
# Just to be safe, use the Jenkins timeout after a long time.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
provider-env: '{gce-provider-env}'
suffix:
- 'gce':
cron-string: '{sq-cron-string}'
description: 'Runs all non-slow, non-serial, non-flaky, tests on GCE in parallel.'
timeout: 50 # See #21138
job-env: |
Expand All @@ -72,6 +73,7 @@
export GINKGO_PARALLEL="y"
export PROJECT="k8s-jkns-e2e-gce"
- 'gce-slow':
cron-string: '{sq-cron-string}'
description: 'Runs slow tests on GCE, sequentially.'
timeout: 150 # See #24072
job-env: |
Expand Down Expand Up @@ -115,6 +117,7 @@
--ginkgo.skip=\[Feature:.+\]"
export PROJECT="k8s-jkns-e2e-gce-flaky"
- 'gce-scalability':
cron-string: '{sq-cron-string}'
description: 'Run the performance/scalability tests on GCE. A larger cluster is used.'
timeout: 120
# TODO: Run this twice a day after we make kubemark-500 a blocking suite.
Expand Down Expand Up @@ -181,13 +184,15 @@
provider-env: '{gke-provider-env}'
suffix:
- 'gke':
cron-string: '{sq-cron-string}'
description: 'Runs all non-slow, non-serial, non-flaky, tests on GKE in parallel (against GKE test endpoint)'
timeout: 50 # See #21138
job-env: |
export PROJECT="k8s-jkns-e2e-gke-ci"
export GINKGO_TEST_ARGS="--ginkgo.skip=\[Slow\]|\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]"
export GINKGO_PARALLEL="y"
- 'gke-slow':
cron-string: '{sq-cron-string}'
description: 'Run slow E2E tests on GKE using the latest successful build.'
timeout: 150 # See #24072
job-env: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
- '5-gce':
description: 'Run minimal Kubemark to make sure it is not broken.'
timeout: 60
cron-string: 'H/5 * * * *'
cron-string: '{sq-cron-string}'
job-env: |
export E2E_NAME="kubemark-5"
export PROJECT="k8s-jenkins-kubemark"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
suffix:
- 'go':
branch: 'master'
cron-string: '{sq-cron-string}'
timeout: 80
- 'go-release-1.2':
branch: 'release-1.2'
Expand Down
1 change: 1 addition & 0 deletions hack/jenkins/job-configs/kubernetes-jenkins/node-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@
owner: 'pszczesniak@google.com'
shell: 'make test-unit test-integration'
- 'kubelet':
cron-string: '{sq-cron-string}'
repoName: 'kubernetes/kubernetes'
gitbasedir: 'k8s.io/kubernetes'
owner: 'pwittroc@google.com'
Expand Down