blob: 8fc8d91e1b4131d08d08af27c489df391881f505 [file] [log] [blame]
Brad Fitzpatricke7b51e32017-04-03 13:03:23 -07001apiVersion: extensions/v1beta1
2kind: Deployment
3metadata:
4 name: pubsubhelper-deployment
5spec:
6 replicas: 1
7 template:
8 metadata:
9 labels:
10 app: pubsubhelper
Jess Frazellecb567ea2017-07-17 11:19:37 -040011 annotations:
12 container.seccomp.security.alpha.kubernetes.io/pubsubhelper: docker/default
13 container.apparmor.security.beta.kubernetes.io/pubsubhelper: runtime/default
Brad Fitzpatricke7b51e32017-04-03 13:03:23 -070014 spec:
Brad Fitzpatricka0bc7372017-04-04 23:12:24 +000015 volumes:
16 - name: pv-autocert-cache
17 gcePersistentDisk:
18 pdName: pubsubhelper-autocert-cache
19 fsType: ext4
Brad Fitzpatricke7b51e32017-04-03 13:03:23 -070020 containers:
21 - name: pubsubhelper
Andrew Bonventre6573edf2017-09-12 15:43:10 -040022 image: gcr.io/symbolic-datum-552/pubsubhelper:latest
Brad Fitzpatricka0bc7372017-04-04 23:12:24 +000023 imagePullPolicy: Always
Andrew Bonventre031ab4e2017-09-05 13:34:06 -040024 command: ["/pubsubhelper"]
Brad Fitzpatricka0bc7372017-04-04 23:12:24 +000025 volumeMounts:
26 - mountPath: /autocert-cache
27 name: pv-autocert-cache
Brad Fitzpatricke7b51e32017-04-03 13:03:23 -070028 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"