k8s.io/test-infra@v0.0.0-20240520184403-27c6b4c223d8/config/jobs/kubernetes-sigs/prow/prow-periodics.yaml (about)

     1  periodics:
     2  - name: ci-prow-continuous-test-verify
     3    cluster: k8s-infra-prow-build
     4    decorate: true
     5    extra_refs:
     6    - org: kubernetes-sigs
     7      repo: prow
     8      base_ref: main
     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-prow-repo
    34      testgrid-tab-name: continuous-test-verify
    35      testgrid-broken-column-threshold: '0.5'
    36      description: Runs `make test verify` on the prow repo every hour