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

     1  postsubmits:
     2    kubernetes/test-infra:
     3    - name: post-test-infra-test-all
     4      cluster: eks-prow-build-cluster
     5      branches:
     6      - master
     7      decorate: true
     8      labels:
     9        preset-service-account: "true"
    10        preset-dind-enabled: "true"
    11        preset-kind-volume-mounts: "true"
    12      spec:
    13        containers:
    14        - image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240515-17c6d50e24-test-infra
    15          command:
    16          - runner.sh
    17          args:
    18          - make
    19          - test
    20          - verify
    21          env:
    22          # docker-in-docker needs privileged mode
    23          securityContext:
    24            privileged: true
    25          resources:
    26            requests:
    27              # This job is very CPU intensive as building prow images in
    28              # parallel
    29              cpu: "14"
    30              memory: "16Gi"
    31            limits:
    32              cpu: "14"
    33              memory: "16Gi"
    34      annotations:
    35        testgrid-dashboards: sig-testing-misc
    36        testgrid-tab-name: post-test-all
    37        description: Runs 'make test verify' on the test-infra repo on each commit