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

config/jobs: add more k8s-staging-test-infra canary push jobs #23616

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions config/jobs/image-pushing/k8s-staging-test-infra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,54 @@ postsubmits:
#
# job images, e.g. images/*
#
- name: post-test-infra-push-bazelbuild-canary
cluster: k8s-infra-prow-build-trusted
run_if_changed: '^images/bazelbuild/'
annotations:
testgrid-dashboards: sig-testing-canaries, wg-k8s-infra-canaries, wg-k8s-infra-gcb
testgrid-tab-name: bazelbuild-canary
testgrid-alert-email: [email protected], [email protected]
testgrid-num-failures-to-alert: '1'
description: builds and pushes the image builder's own image
decorate: true
branches:
- ^master$
max_concurrency: 1
spec:
serviceAccountName: gcb-builder
containers:
- image: gcr.io/k8s-staging-test-infra/image-builder:v20210913-fc7c4e84f6
command:
- /run.sh
args:
- --scratch-bucket=gs://k8s-staging-test-infra-gcb
- --project=k8s-staging-test-infra
- --build-dir=.
- images/bazelbuild/
- name: post-test-infra-push-benchmarkjunit-canary
cluster: k8s-infra-prow-build-trusted
run_if_changed: '^images/benchmarkjunit/'
annotations:
testgrid-dashboards: sig-testing-canaries, wg-k8s-infra-canaries, wg-k8s-infra-gcb
testgrid-tab-name: benchmarkjunit-canary
testgrid-alert-email: [email protected], [email protected]
testgrid-num-failures-to-alert: '1'
description: builds and pushes the image builder's own image
decorate: true
branches:
- ^master$
max_concurrency: 1
spec:
serviceAccountName: gcb-builder
containers:
- image: gcr.io/k8s-staging-test-infra/image-builder:v20210913-fc7c4e84f6
command:
- /run.sh
args:
- --scratch-bucket=gs://k8s-staging-test-infra-gcb
- --project=k8s-staging-test-infra
- --build-dir=.
- pkg/benchmarkjunit/
- name: post-test-infra-push-bigquery
cluster: k8s-infra-prow-build-trusted
run_if_changed: '^(images/bigquery|scenarios)/'
Expand Down Expand Up @@ -51,6 +99,30 @@ postsubmits:
- --project=k8s-staging-test-infra
- --build-dir=.
- images/bootstrap/
- name: post-test-infra-push-gcb-docker-gcloud-canary
cluster: k8s-infra-prow-build-trusted
run_if_changed: '^images/gcb-docker-gcloud/'
annotations:
testgrid-dashboards: sig-testing-canaries, wg-k8s-infra-canaries, wg-k8s-infra-gcb
testgrid-tab-name: gcb-docker-gcloud-canary
testgrid-alert-email: [email protected], [email protected]
testgrid-num-failures-to-alert: '1'
description: builds and pushes the image builder's own image
decorate: true
branches:
- ^master$
max_concurrency: 1
spec:
serviceAccountName: gcb-builder
containers:
- image: gcr.io/k8s-staging-test-infra/image-builder:v20210913-fc7c4e84f6
command:
- /run.sh
args:
- --scratch-bucket=gs://k8s-staging-test-infra-gcb
- --project=k8s-staging-test-infra
- --build-dir=.
- images/gcb-docker-gcloud/
- name: post-test-infra-push-gcloud-in-go
cluster: k8s-infra-prow-build-trusted
run_if_changed: '^images/gcloud/'
Expand Down