Skip to content

Commit

Permalink
etcd: enable integration 1 CPU periodics
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanvc committed Dec 3, 2024
1 parent a095ba5 commit 9089d8d
Showing 1 changed file with 66 additions and 0 deletions.
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
always_run: true
decorate: true
extra_refs:
- org: etcd-io
repo: etcd
base_ref: main
annotations:
testgrid-create-test-group: 'true'
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
always_run: true
decorate: true
extra_refs:
- org: etcd-io
repo: etcd
base_ref: main
annotations:
testgrid-create-test-group: 'true'
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

0 comments on commit 9089d8d

Please sign in to comment.