Skip to content

Commit 2fa55d7

Browse files
authoredAug 11, 2024
Merge pull request #33275 from ivanvc/import-etcd-386-and-arm64-e2e-presubmit-jobs
etcd: import e2e 386 and arm64 presubmit jobs
2 parents 022de12 + c2bd1ac commit 2fa55d7

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed
 

‎config/jobs/etcd/etcd-presubmits.yaml

+60
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,66 @@ presubmits:
205205
cpu: "4"
206206
memory: "8Gi"
207207

208+
- name: pull-etcd-e2e-386
209+
cluster: eks-prow-build-cluster
210+
optional: true # remove this once the job is green
211+
always_run: true
212+
branches:
213+
- main
214+
decorate: true
215+
annotations:
216+
testgrid-dashboards: sig-etcd-presubmits
217+
testgrid-tab-name: pull-etcd-e2e-386
218+
spec:
219+
containers:
220+
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20240705-131cd74733-master
221+
command:
222+
- runner.sh
223+
args:
224+
- bash
225+
- -c
226+
- |
227+
set -euo pipefail
228+
VERBOSE=1 GOOS=linux GOARCH=386 CPU=4 EXPECT_DEBUG=true make test-e2e
229+
resources:
230+
requests:
231+
cpu: "4"
232+
memory: "8Gi"
233+
limits:
234+
cpu: "4"
235+
memory: "8Gi"
236+
237+
- name: pull-etcd-e2e-arm64
238+
cluster: k8s-infra-prow-build
239+
optional: true # remove this once the job is green
240+
always_run: true
241+
branches:
242+
- main
243+
decorate: true
244+
annotations:
245+
testgrid-dashboards: sig-etcd-presubmits
246+
testgrid-tab-name: pull-etcd-e2e-arm64
247+
spec:
248+
containers:
249+
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20240705-131cd74733-master
250+
command:
251+
- runner.sh
252+
args:
253+
- bash
254+
- -c
255+
- |
256+
set -euo pipefail
257+
VERBOSE=1 GOOS=linux GOARCH=arm64 CPU=4 EXPECT_DEBUG=true make test-e2e-release
258+
resources:
259+
requests:
260+
cpu: "4"
261+
memory: "8Gi"
262+
limits:
263+
cpu: "4"
264+
memory: "8Gi"
265+
nodeSelector:
266+
kubernetes.io/arch: arm64
267+
208268
- name: pull-etcd-integration-1-cpu-amd64
209269
cluster: eks-prow-build-cluster
210270
always_run: true

0 commit comments

Comments
 (0)