This repository has been archived by the owner on Mar 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.yaml
102 lines (102 loc) · 2.04 KB
/
email.yaml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
apiVersion: v1
kind: ConfigMap
metadata:
name: email-env
labels:
project: cast
data:
PROGRAM_ALIAS: email
NODE_ENV: production
PORT: "3000"
LOG_LEVEL: debug
LOG_FILE: "false"
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: email
labels:
project: cast
spec:
selector:
matchLabels:
name: email
project: cast
replicas: 2
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
template:
metadata:
labels:
name: email
project: cast
spec:
containers:
- env:
- name: PROGRAM_ALIAS
valueFrom:
configMapKeyRef:
key: PROGRAM_ALIAS
name: email-env
- name: NODE_ENV
valueFrom:
configMapKeyRef:
key: NODE_ENV
name: email-env
- name: PORT
valueFrom:
configMapKeyRef:
key: PORT
name: email-env
- name: LOG_FILE
valueFrom:
configMapKeyRef:
key: LOG_FILE
name: email-env
- name: LOG_LEVEL
valueFrom:
configMapKeyRef:
key: LOG_LEVEL
name: email-env
- name: MAILGUN_API_KEY
valueFrom:
secretKeyRef:
name: mailgun
key: api-key
- name: MAILGUN_DOMAIN
valueFrom:
secretKeyRef:
name: mailgun
key: domain
image: ${REPO}/email
imagePullPolicy: IfNotPresent
name: email
ports:
- containerPort: 3000
readinessProbe:
httpGet:
path: /ready
port: 3000
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1
hostname: email
restartPolicy: Always
---
apiVersion: v1
kind: Service
metadata:
name: email
labels:
project: cast
spec:
selector:
name: email
project: cast
ports:
- name: "5000"
port: 5000
targetPort: 3000