github.com/shashidharatd/test-infra@v0.0.0-20171006011030-71304e1ca560/prow/cluster/sinker_deployment.yaml (about) 1 apiVersion: extensions/v1beta1 2 kind: Deployment 3 metadata: 4 name: sinker 5 labels: 6 app: sinker 7 spec: 8 replicas: 1 9 template: 10 metadata: 11 labels: 12 app: sinker 13 spec: 14 containers: 15 - name: sinker 16 args: 17 - --build-cluster=/etc/cluster/cluster 18 image: gcr.io/k8s-prow/sinker:0.21 19 volumeMounts: 20 - mountPath: /etc/cluster 21 name: cluster 22 readOnly: true 23 - name: config 24 mountPath: /etc/config 25 readOnly: true 26 volumes: 27 - name: cluster 28 secret: 29 defaultMode: 420 30 secretName: build-cluster 31 - name: config 32 configMap: 33 name: config