Skip to content

Commit

Permalink
Tune etcd presubmit integration 2 and 4 CPUs tests
Browse files Browse the repository at this point in the history
Adjust memory and CPU requests accordingly to Grafana. Remove the
optional argument, after successful runs.
  • Loading branch information
ivanvc committed Jun 10, 2024
1 parent af42507 commit f6061e1
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions config/jobs/etcd/etcd-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ presubmits:

- name: pull-etcd-integration-2-cpu-amd64
cluster: eks-prow-build-cluster
optional: true # remove this once the job is green
always_run: true
branches:
- main
Expand All @@ -203,15 +202,14 @@ presubmits:
GOOS=linux GOARCH=amd64 CPU=2 make test-integration
resources:
requests:
cpu: "2"
memory: "8Gi"
cpu: "3"
memory: "3Gi"
limits:
cpu: "2"
memory: "8Gi"
cpu: "3"
memory: "3Gi"

- name: pull-etcd-integration-4-cpu-amd64
cluster: eks-prow-build-cluster
optional: true # remove this once the job is green
always_run: true
branches:
- main
Expand All @@ -234,8 +232,8 @@ presubmits:
GOOS=linux GOARCH=amd64 CPU=4 make test-integration
resources:
requests:
cpu: "4"
memory: "8Gi"
cpu: "6"
memory: "3Gi"
limits:
cpu: "4"
memory: "8Gi"
cpu: "6"
memory: "3Gi"

0 comments on commit f6061e1

Please sign in to comment.