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

etcd: add pull-etcd-integration-{1,2,4}-cpu-arm64 presubmit jobs #33525

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
99 changes: 99 additions & 0 deletions config/jobs/etcd/etcd-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,39 @@ presubmits:
cpu: "2"
memory: "3Gi"

- name: pull-etcd-integration-1-cpu-arm64
optional: true # remove when stable
cluster: k8s-infra-prow-build
always_run: true
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-presubmits
testgrid-tab-name: pull-etcd-integration-1-cpu-arm64
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20240903-6a352c5344-master
command:
- runner.sh
args:
- bash
- -c
- |
set -euo pipefail
make gofail-enable
export JUNIT_REPORT_DIR=${ARTIFACTS}
GOOS=linux GOARCH=arm64 CPU=1 make test-integration
resources:
requests:
cpu: "2"
memory: "3Gi"
limits:
cpu: "2"
memory: "3Gi"
nodeSelector:
kubernetes.io/arch: arm64

- name: pull-etcd-integration-2-cpu-amd64
cluster: eks-prow-build-cluster
always_run: true
Expand Down Expand Up @@ -322,6 +355,39 @@ presubmits:
cpu: "3"
memory: "3Gi"

- name: pull-etcd-integration-2-cpu-arm64
optional: true # remove when stable
cluster: k8s-infra-prow-build
always_run: true
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-presubmits
testgrid-tab-name: pull-etcd-integration-2-cpu-arm64
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20240903-6a352c5344-master
command:
- runner.sh
args:
- bash
- -c
- |
set -euo pipefail
make gofail-enable
export JUNIT_REPORT_DIR=${ARTIFACTS}
GOOS=linux GOARCH=arm64 CPU=2 make test-integration
resources:
requests:
cpu: "3"
memory: "3Gi"
limits:
cpu: "3"
memory: "3Gi"
nodeSelector:
kubernetes.io/arch: arm64

- name: pull-etcd-integration-4-cpu-amd64
cluster: eks-prow-build-cluster
always_run: true
Expand Down Expand Up @@ -352,6 +418,39 @@ presubmits:
cpu: "6"
memory: "3Gi"

- name: pull-etcd-integration-4-cpu-arm64
optional: true # remove when stable
cluster: k8s-infra-prow-build
always_run: true
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-presubmits
testgrid-tab-name: pull-etcd-integration-4-cpu-arm64
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20240903-6a352c5344-master
command:
- runner.sh
args:
- bash
- -c
- |
set -euo pipefail
make gofail-enable
export JUNIT_REPORT_DIR=${ARTIFACTS}
GOOS=linux GOARCH=arm64 CPU=4 make test-integration
resources:
requests:
cpu: "6"
memory: "3Gi"
limits:
cpu: "6"
memory: "3Gi"
nodeSelector:
kubernetes.io/arch: arm64

- name: pull-etcd-robustness-amd64
cluster: k8s-infra-prow-build
always_run: true
Expand Down