Skip to content

Commit 77ecf46

Browse files
committed
jobs: migrate kubernetes/enhancements jobs to eks cluster
also, add cpu/mem limits and requests to the jobs Signed-off-by: Nabarun Pal <[email protected]>
1 parent ae8bccd commit 77ecf46

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

config/jobs/kubernetes/enhancements/enhancements-presubmit.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
presubmits:
22
kubernetes/enhancements:
33
- name: pull-enhancements-verify
4+
cluster: eks-prow-build-cluster
45
always_run: true
56
decorate: true
67
spec:
@@ -10,7 +11,15 @@ presubmits:
1011
- sh
1112
- "-c"
1213
- "export PATH=$PATH:$GOPATH/bin && ./hack/verify.sh"
14+
resources:
15+
limits:
16+
cpu: 2
17+
memory: 4Gi
18+
requests:
19+
cpu: 2
20+
memory: 4Gi
1321
- name: pull-enhancements-test
22+
cluster: eks-prow-build-cluster
1423
always_run: true
1524
decorate: true
1625
spec:
@@ -20,3 +29,10 @@ presubmits:
2029
- make
2130
- test
2231
- tools
32+
resources:
33+
limits:
34+
cpu: 2
35+
memory: 4Gi
36+
requests:
37+
cpu: 2
38+
memory: 4Gi

0 commit comments

Comments
 (0)