-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongo-deployment.yaml
60 lines (60 loc) · 1.16 KB
/
mongo-deployment.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
apiVersion: v1
kind: Service
metadata:
name: mongo
spec:
type: ClusterIP
selector:
app: mongo
ports:
- protocol: TCP
port: 27017
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: mongo
name: mongo
spec:
replicas: 1
strategy: {}
selector:
matchLabels:
app: mongo
template:
metadata:
creationTimestamp: null
labels:
app: mongo
spec:
containers:
- env:
- name: ADMIN_PASS
valueFrom:
secretKeyRef:
name: dev-db-secret
key: adminpassword
- name: ADMIN_USER
value: admin
- name: APPLICATION_USER
valueFrom:
secretKeyRef:
name: dev-db-secret
key: username
- name: APPLICATION_PASS
valueFrom:
secretKeyRef:
name: dev-db-secret
key: password
- name: APPLICATION_DATABASE
value: testra
- name: AUTH
value: "yes"
image: vepo/mongo
name: testra-mongo
ports:
- containerPort: 27017
resources: {}
restartPolicy: Always
status: {}