73 lines
1.6 KiB
YAML
73 lines
1.6 KiB
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: mongo
|
|
spec:
|
|
replicas: 1
|
|
serviceName: mongo
|
|
selector:
|
|
matchLabels:
|
|
app: mongo
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mongo
|
|
spec:
|
|
initContainers:
|
|
- name: init
|
|
image: busybox
|
|
imagePullPolicy: IfNotPresent
|
|
command:
|
|
- sh
|
|
- -c
|
|
- |
|
|
sysctl -w net.ipv4.tcp_keepalive_time=300
|
|
sysctl -w net.ipv4.tcp_keepalive_intvl=10
|
|
sysctl -w net.ipv4.tcp_keepalive_probes=3
|
|
securityContext:
|
|
privileged: true
|
|
containers:
|
|
- name: mongo
|
|
image: mongo:6.0.6
|
|
imagePullPolicy: IfNotPresent
|
|
env:
|
|
- name: MONGO_INITDB_ROOT_USERNAME
|
|
value: root
|
|
- name: MONGO_INITDB_ROOT_PASSWORD
|
|
value: 'drillinsight123'
|
|
ports:
|
|
- containerPort: 27017
|
|
volumeMounts:
|
|
- name: mongo-data
|
|
mountPath: /data/db
|
|
volumes:
|
|
- name: mongo-data
|
|
hostPath:
|
|
path: /data/tcs/mongo
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: "kubernetes.io/hostname"
|
|
operator: In
|
|
values:
|
|
- drill-k8snode-10-2-1-15.base.drillinsight.com
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mongo
|
|
spec:
|
|
selector:
|
|
app: mongo
|
|
ports:
|
|
- name: mongo
|
|
protocol: TCP
|
|
port: 27017
|
|
targetPort: 27017
|
|
nodePort: 30018
|
|
type: NodePort
|
|
|