github.com/shashidharatd/test-infra@v0.0.0-20171006011030-71304e1ca560/queue_health/queue-health-graph-dev.yaml (about) 1 apiVersion: extensions/v1beta1 2 kind: Deployment 3 metadata: 4 name: queue-health-graph-dev 5 spec: 6 replicas: 1 7 template: 8 metadata: 9 labels: 10 app: queue-health-graph-dev 11 spec: # Test graph, prod history, no poller 12 containers: 13 - name: grapher 14 image: gcr.io/k8s-testimages/queue-health-graph 15 command: 16 - python 17 - /graph.py 18 - gs://kubernetes-test-history/sq/history.txt 19 - gs://kubernetes-test-history/sq-test/k8s-queue-health.svg 20 - /creds/service-account.json 21 volumeMounts: 22 - name: service-account 23 mountPath: /creds 24 readOnly: true 25 volumes: 26 - name: service-account 27 secret: 28 secretName: queue-health-service-account