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

releng: update pull-release-image-kube-cross to set the cluster where it should run #20703

Merged
merged 1 commit into from
Feb 9, 2021
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
10 changes: 9 additions & 1 deletion config/jobs/kubernetes/release/release-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,12 @@ presubmits:
testgrid-num-columns-recent: '30'
- name: pull-release-image-kube-cross
optional: true
cluster: k8s-infra-prow-build
decorate: true
run_if_changed: '^images\/build\/cross\/'
path_alias: k8s.io/release
spec:
serviceAccountName: gcb-builder
serviceAccountName: gcb-builder-releng-test
containers:
- image: gcr.io/k8s-testimages/image-builder:v20210204-b06ec78
command:
Expand All @@ -102,6 +103,13 @@ presubmits:
env:
- name: LOG_TO_STDOUT
value: "y"
resources:
requests:
cpu: 1000m
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the job will run on GCB so I don't think we need many resources

memory: 1Gi
limits:
cpu: 1000m
memory: 1Gi
annotations:
testgrid-dashboards: sig-release-releng-presubmits
testgrid-tab-name: release-image-kube-cross
Expand Down