diff --git a/config/jobs/kubernetes/community/community-presubmit.yaml b/config/jobs/kubernetes/community/community-presubmit.yaml index 6351a82903b5..8639938ab7bf 100644 --- a/config/jobs/kubernetes/community/community-presubmit.yaml +++ b/config/jobs/kubernetes/community/community-presubmit.yaml @@ -1,6 +1,7 @@ presubmits: kubernetes/community: - name: pull-community-verify + cluster: eks-prow-build-cluster branches: - master always_run: true @@ -13,10 +14,18 @@ presubmits: - "-c" # Add GOPATH/bin back to PATH to workaround #9469 - "export PATH=$PATH:$GOPATH/bin && make verify" + resources: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 2 + memory: 4Gi annotations: testgrid-dashboards: sig-contribex-community testgrid-tab-name: pull-verify - name: pull-community-tempelis-check + cluster: eks-prow-build-cluster decorate: true branches: - ^master$ @@ -32,6 +41,13 @@ presubmits: - --config=communication/slack-config/ - --restrictions=communication/slack-config/restrictions.yaml - --auth=/etc/slack-auth/auth.json + resources: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 2 + memory: 4Gi volumeMounts: - name: tempelis-readonly-creds mountPath: /etc/slack-auth diff --git a/config/jobs/kubernetes/enhancements/enhancements-presubmit.yaml b/config/jobs/kubernetes/enhancements/enhancements-presubmit.yaml index 4b2dbbe96f2e..f14bb7d94666 100644 --- a/config/jobs/kubernetes/enhancements/enhancements-presubmit.yaml +++ b/config/jobs/kubernetes/enhancements/enhancements-presubmit.yaml @@ -1,6 +1,7 @@ presubmits: kubernetes/enhancements: - name: pull-enhancements-verify + cluster: eks-prow-build-cluster always_run: true decorate: true spec: @@ -10,7 +11,15 @@ presubmits: - sh - "-c" - "export PATH=$PATH:$GOPATH/bin && ./hack/verify.sh" + resources: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 2 + memory: 4Gi - name: pull-enhancements-test + cluster: eks-prow-build-cluster always_run: true decorate: true spec: @@ -20,3 +29,10 @@ presubmits: - make - test - tools + resources: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 2 + memory: 4Gi diff --git a/config/jobs/kubernetes/org/kubernetes-org-jobs.yaml b/config/jobs/kubernetes/org/kubernetes-org-jobs.yaml index b4ca719230e6..d94dee35fcea 100644 --- a/config/jobs/kubernetes/org/kubernetes-org-jobs.yaml +++ b/config/jobs/kubernetes/org/kubernetes-org-jobs.yaml @@ -1,6 +1,7 @@ presubmits: kubernetes/org: - name: pull-org-test-all + cluster: eks-prow-build-cluster always_run: true decorate: true labels: @@ -12,10 +13,19 @@ presubmits: - make args: - test + resources: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 2 + memory: 4Gi annotations: testgrid-num-columns-recent: '30' testgrid-create-test-group: 'true' + - name: pull-org-verify-all + cluster: eks-prow-build-cluster always_run: true decorate: true labels: @@ -27,6 +37,13 @@ presubmits: - make args: - verify + resources: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 2 + memory: 4Gi annotations: testgrid-num-columns-recent: '30' testgrid-create-test-group: 'true'