k8s.io/test-infra@v0.0.0-20240520184403-27c6b4c223d8/config/jobs/kubernetes/test-infra/test-infra-periodics.yaml (about) 1 periodics: 2 - name: ci-test-infra-continuous-test 3 cluster: k8s-infra-prow-build 4 decorate: true 5 extra_refs: 6 - org: kubernetes 7 repo: test-infra 8 base_ref: master 9 interval: 1h 10 labels: 11 # Enable dind for linters that required docker to run, for example typescript. 12 preset-dind-enabled: "true" 13 spec: 14 containers: 15 - image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240515-17c6d50e24-test-infra 16 command: 17 - runner.sh 18 args: 19 - make 20 - test 21 - verify 22 # docker-in-docker needs privileged mode 23 securityContext: 24 privileged: true 25 resources: 26 limits: 27 cpu: 2 28 memory: 4Gi 29 requests: 30 cpu: 2 31 memory: 4Gi 32 annotations: 33 testgrid-dashboards: sig-testing-misc 34 testgrid-tab-name: continuous 35 testgrid-broken-column-threshold: '0.5' 36 description: Runs `make test verify` on the test-infra repo every hour 37 38 - name: job-migration-todo-report 39 decorate: true 40 interval: 24h 41 extra_refs: 42 - org: kubernetes 43 repo: test-infra 44 base_ref: master 45 spec: 46 containers: 47 - image: gcr.io/k8s-staging-infra-tools/k8s-infra:latest 48 command: 49 - hack/cluster-migration/update_todo.sh 50 annotations: 51 testgrid-dashboards: sig-testing-misc 52 testgrid-tab-name: job-migration-todo-report 53 description: Reports the status of the job migration to Prow