Brad Fitzpatrick | e7b51e3 | 2017-04-03 13:03:23 -0700 | [diff] [blame] | 1 | apiVersion: extensions/v1beta1 |
| 2 | kind: Deployment |
| 3 | metadata: |
| 4 | name: pubsubhelper-deployment |
| 5 | spec: |
| 6 | replicas: 1 |
| 7 | template: |
| 8 | metadata: |
| 9 | labels: |
| 10 | app: pubsubhelper |
Jess Frazelle | cb567ea | 2017-07-17 11:19:37 -0400 | [diff] [blame] | 11 | annotations: |
| 12 | container.seccomp.security.alpha.kubernetes.io/pubsubhelper: docker/default |
| 13 | container.apparmor.security.beta.kubernetes.io/pubsubhelper: runtime/default |
Brad Fitzpatrick | e7b51e3 | 2017-04-03 13:03:23 -0700 | [diff] [blame] | 14 | spec: |
Brad Fitzpatrick | a0bc737 | 2017-04-04 23:12:24 +0000 | [diff] [blame] | 15 | volumes: |
| 16 | - name: pv-autocert-cache |
| 17 | gcePersistentDisk: |
| 18 | pdName: pubsubhelper-autocert-cache |
| 19 | fsType: ext4 |
Brad Fitzpatrick | e7b51e3 | 2017-04-03 13:03:23 -0700 | [diff] [blame] | 20 | containers: |
| 21 | - name: pubsubhelper |
Andrew Bonventre | 6573edf | 2017-09-12 15:43:10 -0400 | [diff] [blame^] | 22 | image: gcr.io/symbolic-datum-552/pubsubhelper:latest |
Brad Fitzpatrick | a0bc737 | 2017-04-04 23:12:24 +0000 | [diff] [blame] | 23 | imagePullPolicy: Always |
Andrew Bonventre | 031ab4e | 2017-09-05 13:34:06 -0400 | [diff] [blame] | 24 | command: ["/pubsubhelper"] |
Brad Fitzpatrick | a0bc737 | 2017-04-04 23:12:24 +0000 | [diff] [blame] | 25 | volumeMounts: |
| 26 | - mountPath: /autocert-cache |
| 27 | name: pv-autocert-cache |
Brad Fitzpatrick | e7b51e3 | 2017-04-03 13:03:23 -0700 | [diff] [blame] | 28 | ports: |
| 29 | - containerPort: 25 |
| 30 | - containerPort: 80 |
| 31 | - containerPort: 443 |
| 32 | resources: |
| 33 | requests: |
| 34 | cpu: "1" |
| 35 | memory: "1Gi" |
| 36 | limits: |
| 37 | memory: "2Gi" |