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

     1  presubmits:
     2    kubernetes/community:
     3    - name: pull-community-verify
     4      cluster: eks-prow-build-cluster
     5      branches:
     6      - master
     7      always_run: true
     8      decorate: true
     9      spec:
    10        containers:
    11        - image: public.ecr.aws/docker/library/golang:1.18.2
    12          command:
    13          - sh
    14          - "-c"
    15          # Add GOPATH/bin back to PATH to workaround #9469
    16          - "export PATH=$PATH:$GOPATH/bin && make verify"
    17          resources:
    18            limits:
    19              cpu: 2
    20              memory: 4Gi
    21            requests:
    22              cpu: 2
    23              memory: 4Gi
    24      annotations:
    25        testgrid-dashboards: sig-contribex-community
    26        testgrid-tab-name: pull-verify
    27    - name: pull-community-tempelis-check
    28      decorate: true
    29      branches:
    30      - ^master$
    31      run_if_changed: '^communication/slack-config'
    32      annotations:
    33        testgrid-dashboards: sig-contribex-slack-infra
    34      spec:
    35        containers:
    36        - image: gcr.io/k8s-staging-slack-infra/tempelis:v20200909-1eb97f5
    37          command:
    38          - /tempelis
    39          args:
    40          - --config=communication/slack-config/
    41          - --restrictions=communication/slack-config/restrictions.yaml
    42          - --auth=/etc/slack-auth/auth.json
    43          resources:
    44            limits:
    45              cpu: 2
    46              memory: 4Gi
    47            requests:
    48              cpu: 2
    49              memory: 4Gi
    50          volumeMounts:
    51          - name: tempelis-readonly-creds
    52            mountPath: /etc/slack-auth
    53            readOnly: true
    54        volumes:
    55        - name: tempelis-readonly-creds
    56          secret:
    57            secretName: slack-tempelis-auth