-
Notifications
You must be signed in to change notification settings - Fork 0
/
io_old.yum
70 lines (70 loc) · 1.81 KB
/
io_old.yum
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
app: io
name: io
namespace: dev
spec:
replicas: 1
selector:
matchLabels:
app: io
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
creationTimestamp: null
labels:
app: io
spec:
containers:
- env:
- name: HUBOT_SLACK_TOKEN
valueFrom:
secretKeyRef:
key: token
name: io-slack
- name: HUBOT_S3_BRAIN_BUCKET
value: hubbot
- name: HUBOT_DOMAIN_ME_SFW
value: YES
- name: HUBOT_GOOGLE_IMAGES_HEAR
value: true
- name: HUBOT_GOOGLE_CSE_ID
valueFrom:
secretKeyRef:
key: id
name: io-google-cse
- name: HUBOT_GOOGLE_CSE_KEY
valueFrom:
secretKeyRef:
key: key
name: io-google-cse
- name: HUBOT_S3_BRAIN_ACCESS_KEY_ID
valueFrom:
secretKeyRef:
key: id
name: io-aws
- name: HUBOT_S3_BRAIN_SECRET_ACCESS_KEY
valueFrom:
secretKeyRef:
key: key
name: io-aws
image: esridc/hubbot:latest
imagePullPolicy: IfNotPresent
name: io
resources:
requests:
cpu: 100m
memory: 50Mi
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30