-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkmamiz-demo-mongodb.yaml
57 lines (57 loc) · 1.16 KB
/
kmamiz-demo-mongodb.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
apiVersion: v1
kind: Service
metadata:
name: mongo
namespace: kmamiz-system
spec:
type: NodePort
selector:
app: mongo
ports:
- protocol: TCP
port: 27017
targetPort: 27017
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: mongo
namespace: kmamiz-system
spec:
selector:
matchLabels:
app: mongo
serviceName: mongo
replicas: 1
template:
metadata:
labels:
app: mongo
spec:
containers:
- name: mongo
image: mongo
env:
- name: MONGO_INITDB_DATABASE
value: "monitoring"
ports:
- containerPort: 27017
volumeMounts:
- name: mongo-pv
mountPath: /data/db
- name: mongo-init
mountPath: "/docker-entrypoint-initdb.d/mongo-init.js"
subPath: "mongo-init.js"
volumes:
- name: mongo-init
configMap:
name: mongo-init
volumeClaimTemplates:
- metadata:
name: mongo-pv
spec:
accessModes: ["ReadWriteOnce"]
storageClassName: "standard"
resources:
requests:
storage: 2Gi