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: enable integration 1 CPU periodics #33894

Merged
merged 1 commit into from
Dec 3, 2024
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
66 changes: 66 additions & 0 deletions config/jobs/etcd/etcd-periodics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -369,3 +369,69 @@ periodics:
privileged: true
nodeSelector:
kubernetes.io/arch: arm64

- name: ci-etcd-integration-1-cpu-amd64
interval: 24h
cluster: eks-prow-build-cluster
decorate: true
extra_refs:
- org: etcd-io
repo: etcd
base_ref: main
annotations:
testgrid-dashboards: sig-etcd-periodics, sig-etcd-arm64
testgrid-tab-name: ci-etcd-integration-1-cpu-amd64
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241128-8df65c072f-master
command:
- runner.sh
args:
- bash
- -c
- |
set -euo pipefail
make gofail-enable
export JUNIT_REPORT_DIR=${ARTIFACTS}
GOOS=linux GOARCH=amd64 CPU=1 make test-integration
resources:
requests:
cpu: "2"
memory: "3Gi"
limits:
cpu: "2"
memory: "3Gi"

- name: ci-etcd-integration-1-cpu-arm64
interval: 24h
cluster: k8s-infra-prow-build
decorate: true
extra_refs:
- org: etcd-io
repo: etcd
base_ref: main
annotations:
testgrid-dashboards: sig-etcd-periodics, sig-etcd-arm64
testgrid-tab-name: ci-etcd-integration-1-cpu-arm64
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241128-8df65c072f-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