@@ -282,6 +282,96 @@ periodics:
282
282
nodeSelector :
283
283
kubernetes.io/arch : arm64
284
284
285
+ - name : ci-etcd-robustness-release36-amd64
286
+ interval : 24h
287
+ cluster : k8s-infra-prow-build
288
+ decorate : true
289
+ decoration_config :
290
+ timeout : 210m
291
+ extra_refs :
292
+ - org : etcd-io
293
+ repo : etcd
294
+ base_ref : main
295
+ annotations :
296
+ testgrid-create-test-group : ' true'
297
+ spec :
298
+ containers :
299
+ - image : us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20250422-9d0e6fd518-master
300
+ command :
301
+ - runner.sh
302
+ args :
303
+ - bash
304
+ - -c
305
+ - |
306
+ result=0
307
+ apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
308
+ sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
309
+ make install-lazyfs
310
+ set -euo pipefail
311
+ GO_TEST_FLAGS="-v --count 120 --timeout '200m' --run TestRobustnessExploratory"
312
+ VERBOSE=1 GOOS=linux GOARCH=amd64 CPU=8 EXPECT_DEBUG=true GO_TEST_FLAGS=${GO_TEST_FLAGS} RESULTS_DIR=/data/results make test-robustness-release-3.6 || result=$?
313
+ if [ -d /data/results ]; then
314
+ zip -r ${ARTIFACTS}/results.zip /data/results
315
+ fi
316
+ exit $result
317
+ resources :
318
+ requests :
319
+ cpu : " 7"
320
+ memory : " 14Gi"
321
+ limits :
322
+ cpu : " 7"
323
+ memory : " 14Gi"
324
+ # fuse needs privileged mode
325
+ securityContext :
326
+ privileged : true
327
+ nodeSelector :
328
+ kubernetes.io/arch : amd64
329
+
330
+ - name : ci-etcd-robustness-release36-arm64
331
+ interval : 24h
332
+ cluster : k8s-infra-prow-build
333
+ decorate : true
334
+ decoration_config :
335
+ timeout : 210m
336
+ extra_refs :
337
+ - org : etcd-io
338
+ repo : etcd
339
+ base_ref : main
340
+ annotations :
341
+ testgrid-create-test-group : ' true'
342
+ spec :
343
+ containers :
344
+ - image : us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20250422-9d0e6fd518-master
345
+ command :
346
+ - runner.sh
347
+ args :
348
+ - bash
349
+ - -c
350
+ - |
351
+ result=0
352
+ apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
353
+ sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
354
+ make install-lazyfs
355
+ set -euo pipefail
356
+ GO_TEST_FLAGS="-v --count 120 --timeout '200m' --run TestRobustnessExploratory"
357
+ VERBOSE=1 GOOS=linux GOARCH=arm64 CPU=8 EXPECT_DEBUG=true GO_TEST_FLAGS=${GO_TEST_FLAGS} RESULTS_DIR=/data/results make test-robustness-release-3.6 || result=$?
358
+ if [ -d /data/results ]; then
359
+ zip -r ${ARTIFACTS}/results.zip /data/results
360
+ fi
361
+ exit $result
362
+ resources :
363
+ requests :
364
+ cpu : " 7"
365
+ memory : " 14Gi"
366
+ limits :
367
+ cpu : " 7"
368
+ memory : " 14Gi"
369
+ # fuse needs privileged mode
370
+ securityContext :
371
+ privileged : true
372
+ nodeSelector :
373
+ kubernetes.io/arch : arm64
374
+
285
375
- name : ci-etcd-robustness-release35-amd64
286
376
interval : 24h
287
377
cluster : k8s-infra-prow-build
0 commit comments