github.com/shashidharatd/test-infra@v0.0.0-20171006011030-71304e1ca560/queue_health/queue-health-prod.yaml (about)

     1  apiVersion: extensions/v1beta1
     2  kind: Deployment
     3  metadata:
     4    name: queue-health
     5  spec:
     6    replicas: 1
     7    template:
     8      metadata:
     9        labels:
    10          app: queue-health
    11      spec:  # Override with production targets
    12        containers:
    13        - name: grapher
    14          image: gcr.io/k8s-testimages/queue-health-graph:v20170621
    15          command:
    16          - python
    17          - /graph.py
    18          - gs://kubernetes-test-history/sq/history.txt
    19          - gs://kubernetes-test-history/k8s-queue-health.svg
    20          - /creds/service-account.json
    21          volumeMounts:
    22          - name: service-account
    23            mountPath: /creds
    24            readOnly: true
    25        - name: poller
    26          image: gcr.io/k8s-testimages/queue-health-poll:v20170621
    27          command:
    28          - python
    29          - /poller.py
    30          - gs://kubernetes-test-history/sq/history.txt
    31          - /creds/service-account.json
    32          volumeMounts:
    33          - name: service-account
    34            mountPath: /creds
    35            readOnly: true
    36        volumes:
    37        - name: service-account
    38          secret:
    39            secretName: queue-health-service-account