-
Notifications
You must be signed in to change notification settings - Fork 27
/
mongos.yaml
85 lines (85 loc) · 1.67 KB
/
mongos.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
apiVersion: v1
kind: Service
metadata:
name: mongos1
labels:
run: mongos1
spec:
ports:
- port: 27017
protocol: TCP
selector:
run: mongos1
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: mongos1
spec:
replicas: 1
template:
metadata:
labels:
name: mongos1
run: mongos1
spec:
restartPolicy: Always
hostname: mongos1
containers:
- image: mongo:latest
name: mongos1
ports:
- name: mongos1
containerPort: 27017
volumeMounts:
- name: mongos1
mountPath: /data/db
command: ["mongos"]
args: ["--configdb", "cfgrs/mongocfg1:27019,mongocfg2:27019,mongocfg3:27019", "--bind_ip_all"]
volumes:
- name: mongos1
# persistentVolumeClaim:
# claimName: mongos1
---
apiVersion: v1
kind: Service
metadata:
name: mongos2
labels:
run: mongos2
spec:
ports:
- port: 27017
protocol: TCP
selector:
run: mongos2
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: mongos2
spec:
replicas: 1
template:
metadata:
labels:
name: mongos2
run: mongos2
spec:
restartPolicy: Always
hostname: mongos1
containers:
- image: mongo:latest
name: mongos2
ports:
- name: mongos2
containerPort: 27017
volumeMounts:
- name: mongos2
mountPath: /data/db
command: ["mongos"]
args: ["--configdb", "cfgrs/mongocfg1:27019,mongocfg2:27019,mongocfg3:27019", "--bind_ip_all"]
volumes:
- name: mongos2
# persistentVolumeClaim:
# claimName: mongos2