-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongo-db.yml
More file actions
358 lines (357 loc) · 11.4 KB
/
mongo-db.yml
File metadata and controls
358 lines (357 loc) · 11.4 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
# Source: mongodb/templates/arbiter/headless-svc.yaml
apiVersion: v1
kind: Service
metadata:
name: mongo-db-mongodb-arbiter-headless
namespace: "application"
labels:
app.kubernetes.io/name: mongodb
helm.sh/chart: mongodb-12.1.15
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/component: arbiter
platform-compopnent: mongo-db-mongodb
spec:
type: ClusterIP
clusterIP: None
ports:
- name: tcp-mongodb
port: 27017
targetPort: mongodb
selector:
app.kubernetes.io/name: mongodb
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/component: arbiter
---
# Source: mongodb/templates/replicaset/headless-svc.yaml
apiVersion: v1
kind: Service
metadata:
name: mongo-db-mongodb-headless
namespace: "application"
labels:
app.kubernetes.io/name: mongodb
helm.sh/chart: mongodb-12.1.15
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/component: mongodb
platform-compopnent: mongo-db-mongodb
spec:
type: ClusterIP
clusterIP: None
publishNotReadyAddresses: true
ports:
- name: "mongodb"
port: 27017
targetPort: mongodb
selector:
app.kubernetes.io/name: mongodb
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/component: mongodb
---
# Source: mongodb/templates/arbiter/statefulset.yaml
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: mongo-db-mongodb-arbiter
namespace: "application"
labels:
app.kubernetes.io/name: mongodb
helm.sh/chart: mongodb-12.1.15
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/component: arbiter
platform-compopnent: mongo-db-mongodb
spec:
serviceName: mongo-db-mongodb-arbiter-headless
podManagementPolicy: OrderedReady
updateStrategy:
type: RollingUpdate
selector:
matchLabels:
app.kubernetes.io/name: mongodb
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/component: arbiter
template:
metadata:
labels:
app.kubernetes.io/name: mongodb
helm.sh/chart: mongodb-12.1.15
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/component: arbiter
platform-compopnent: mongo-db-mongodb
spec:
serviceAccountName: mongo-db-mongodb
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: katonic.ai/node-pool
operator: In
values:
- platform
tolerations:
- effect: NoSchedule
key: katonic.ai/node-pool
operator: Equal
value: platform
securityContext:
fsGroup: 1001
sysctls: []
priorityClassName: mongo-db-high-priority
initContainers:
containers:
- name: mongodb-arbiter
image: quay.io/katonic/mongo:mongodb
imagePullPolicy: "IfNotPresent"
securityContext:
runAsNonRoot: true
runAsUser: 1001
env:
- name: BITNAMI_DEBUG
value: "false"
- name: MY_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: MY_POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: K8S_SERVICE_NAME
value: "mongo-db-mongodb-arbiter-headless"
- name: MONGODB_REPLICA_SET_MODE
value: "arbiter"
- name: MONGODB_INITIAL_PRIMARY_HOST
value: mongo-db-mongodb-0.mongo-db-mongodb-headless.$(MY_POD_NAMESPACE).svc.cluster.local
- name: MONGODB_REPLICA_SET_NAME
value: "rs0"
- name: MONGODB_ADVERTISED_HOSTNAME
value: "$(MY_POD_NAME).$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local"
- name: MONGODB_PORT_NUMBER
value: "27017"
- name: MONGODB_INITIAL_PRIMARY_ROOT_USER
value: "root"
- name: MONGODB_INITIAL_PRIMARY_ROOT_PASSWORD
valueFrom:
secretKeyRef:
name: mongo-db-mongodb
key: mongodb-root-password
- name: MONGODB_REPLICA_SET_KEY
valueFrom:
secretKeyRef:
name: mongo-db-mongodb
key: mongodb-replica-set-key
- name: ALLOW_EMPTY_PASSWORD
value: "no"
ports:
- containerPort: 27017
name: mongodb
livenessProbe:
failureThreshold: 6
initialDelaySeconds: 30
periodSeconds: 20
successThreshold: 1
timeoutSeconds: 10
tcpSocket:
port: mongodb
readinessProbe:
failureThreshold: 6
initialDelaySeconds: 5
periodSeconds: 20
successThreshold: 1
timeoutSeconds: 10
tcpSocket:
port: mongodb
resources:
limits: {}
requests: {}
---
# Source: mongodb/templates/replicaset/statefulset.yaml
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: mongo-db-mongodb
namespace: "application"
labels:
app.kubernetes.io/name: mongodb
helm.sh/chart: mongodb-12.1.15
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/component: mongodb
platform-compopnent: mongo-db-mongodb
spec:
serviceName: mongo-db-mongodb-headless
podManagementPolicy: OrderedReady
replicas: mongo-db-mongodb-replicas
updateStrategy:
type: RollingUpdate
selector:
matchLabels:
app.kubernetes.io/name: mongodb
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/component: mongodb
template:
metadata:
annotations:
backup.velero.io/backup-volumes: datadir
labels:
app.kubernetes.io/name: mongodb
helm.sh/chart: mongodb-12.1.15
app.kubernetes.io/instance: mongo-db
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/component: mongodb
platform-compopnent: mongo-db-mongodb
spec:
serviceAccountName: mongo-db-mongodb
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: katonic.ai/node-pool
operator: In
values:
- platform
tolerations:
- effect: NoSchedule
key: katonic.ai/node-pool
operator: Equal
value: platform
securityContext:
fsGroup: 1001
sysctls: []
priorityClassName: mongo-db-high-priority
initContainers:
- name: volume-permissions
image: quay.io/katonic/onprem-db-bitnami-shell:11-debian-11-r24
imagePullPolicy: "IfNotPresent"
command:
- /bin/bash
args:
- -ec
- |
mkdir -p /bitnami/mongodb/
chown 1001:1001 /bitnami/mongodb/
find /bitnami/mongodb/ -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" | xargs -r chown -R 1001:1001
securityContext:
runAsUser: 0
resources:
limits: {}
requests: {}
volumeMounts:
- name: datadir
mountPath: /bitnami/mongodb
containers:
- name: mongodb
image: quay.io/katonic/mongo:mongodb
imagePullPolicy: "IfNotPresent"
securityContext:
runAsNonRoot: true
runAsUser: 1001
command:
- /scripts/setup.sh
env:
- name: BITNAMI_DEBUG
value: "false"
- name: MY_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: MY_POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: MY_POD_HOST_IP
valueFrom:
fieldRef:
fieldPath: status.hostIP
- name: K8S_SERVICE_NAME
value: "mongo-db-mongodb-headless"
- name: MONGODB_INITIAL_PRIMARY_HOST
value: mongo-db-mongodb-0.$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local
- name: MONGODB_REPLICA_SET_NAME
value: "rs0"
- name: MONGODB_ADVERTISED_HOSTNAME
value: "$(MY_POD_NAME).$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local"
- name: MONGODB_ROOT_USER
value: "root"
- name: MONGODB_ROOT_PASSWORD
valueFrom:
secretKeyRef:
name: mongo-db-mongodb
key: mongodb-root-password
- name: MONGODB_REPLICA_SET_KEY
valueFrom:
secretKeyRef:
name: mongo-db-mongodb
key: mongodb-replica-set-key
- name: ALLOW_EMPTY_PASSWORD
value: "no"
- name: MONGODB_SYSTEM_LOG_VERBOSITY
value: "0"
- name: MONGODB_DISABLE_SYSTEM_LOG
value: "no"
- name: MONGODB_DISABLE_JAVASCRIPT
value: "no"
- name: MONGODB_ENABLE_JOURNAL
value: "yes"
- name: MONGODB_PORT_NUMBER
value: "27017"
- name: MONGODB_ENABLE_IPV6
value: "no"
- name: MONGODB_ENABLE_DIRECTORY_PER_DB
value: "no"
ports:
- name: mongodb
containerPort: 27017
livenessProbe:
failureThreshold: 6
initialDelaySeconds: 30
periodSeconds: 20
successThreshold: 1
timeoutSeconds: 10
exec:
command:
- /bitnami/scripts/ping-mongodb.sh
readinessProbe:
failureThreshold: 6
initialDelaySeconds: 5
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
exec:
command:
- /bitnami/scripts/readiness-probe.sh
resources:
limits: {}
requests: {}
volumeMounts:
- name: datadir
mountPath: /bitnami/mongodb
subPath:
- name: common-scripts
mountPath: /bitnami/scripts
- name: scripts
mountPath: /scripts/setup.sh
subPath: setup.sh
volumes:
- name: common-scripts
configMap:
name: mongo-db-mongodb-common-scripts
defaultMode: 0550
- name: scripts
configMap:
name: mongo-db-mongodb-scripts
defaultMode: 0755
volumeClaimTemplates:
- metadata:
name: datadir
spec:
accessModes:
- "ReadWriteOnce"
resources:
requests:
storage: "8Gi"