github.com/zppinho/prow@v0.0.0-20240510014325-1738badeb017/test/integration/config/prow/cluster/sinker.yaml (about)

     1  apiVersion: apps/v1
     2  kind: Deployment
     3  metadata:
     4    namespace: default
     5    name: sinker
     6    labels:
     7      app: sinker
     8  spec:
     9    replicas: 1
    10    selector:
    11      matchLabels:
    12        app: sinker
    13    template:
    14      metadata:
    15        labels:
    16          app: sinker
    17      spec:
    18        serviceAccountName: sinker
    19        containers:
    20        - name: sinker
    21          args:
    22          - --config-path=/etc/config/config.yaml
    23          - --dry-run=false
    24          image: localhost:5001/sinker
    25          volumeMounts:
    26          - name: config
    27            mountPath: /etc/config
    28            readOnly: true
    29        volumes:
    30        - name: config
    31          configMap:
    32            name: config