Skip to content

Commit

Permalink
Merge pull request #32685 from ivanvc/tune-etcd-integration-1-cpu-pre…
Browse files Browse the repository at this point in the history
…submit-job

Tune etcd integration 1 cpu presubmit job
  • Loading branch information
k8s-ci-robot authored May 30, 2024
2 parents cb29664 + b0d518a commit a4f43f0
Showing 1 changed file with 62 additions and 3 deletions.
65 changes: 62 additions & 3 deletions config/jobs/etcd/etcd-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ presubmits:

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

- 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
decorate: true
annotations:
testgrid-dashboards: sig-etcd-presubmits
testgrid-tab-name: pull-etcd-integration-2-cpu-amd64
spec:
containers:
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240515-17c6d50e24-master
command:
- runner.sh
args:
- bash
- -c
- |
set -euo pipefail
make gofail-enable
GOOS=linux GOARCH=amd64 CPU=2 make test-integration
resources:
requests:
cpu: "2"
memory: "8Gi"
limits:
cpu: "1"
cpu: "2"
memory: "8Gi"

- 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
decorate: true
annotations:
testgrid-dashboards: sig-etcd-presubmits
testgrid-tab-name: pull-etcd-integration-4-cpu-amd64
spec:
containers:
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240515-17c6d50e24-master
command:
- runner.sh
args:
- bash
- -c
- |
set -euo pipefail
make gofail-enable
GOOS=linux GOARCH=amd64 CPU=4 make test-integration
resources:
requests:
cpu: "4"
memory: "8Gi"
limits:
cpu: "4"
memory: "8Gi"

0 comments on commit a4f43f0

Please sign in to comment.