forked from pablokbs/peladonerd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
05-node-app.yaml
45 lines (45 loc) · 1.11 KB
/
05-node-app.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
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: node-mongo
name: node-mongo
spec:
progressDeadlineSeconds: 600
replicas: 3
revisionHistoryLimit: 10
selector:
matchLabels:
app: node-mongo
strategy:
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
type: RollingUpdate
template:
metadata:
creationTimestamp: null
labels:
app: node-mongo
role: node-mongo
spec:
containers:
- env:
- name: LCB_DATABASE_URI
value: mongodb://mongo-0.mongo:27017,mongo-1.mongo:27017,mongo-2.mongo:27017/member-management
image: husseingalal/letschat2
imagePullPolicy: IfNotPresent
name: node-mongo
ports:
- containerPort: 8080
protocol: TCP
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
status: {}