mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
* build: k8s improve. * refactor: update docker image contents. * rename seq file. * build: update k8s origin deploys. * update check logic. * update magefile * update image name. * update readme * update Kubernetes Discovery. * revert pkg. * update create in k8s * update service image release CI. * update deployment image source. * update mage contents. * update pkg source. * update go get pkg. * fix test file. * update discovery register. * update * update deploy yaml. * update replica. * update deployment. * remove notfication config. * remove notification and zookeeper. * update discovery in kubernetes. * build: improve kubernetes deployment. * update config field in discovery. * update ReadMe in deployments. * update go mod. * update const quote. * fix test fields. * remove unused method. * remove unused contents.
96 lines
3.1 KiB
YAML
96 lines
3.1 KiB
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: mongo-statefulset
|
|
spec:
|
|
serviceName: "mongo"
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: mongo
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mongo
|
|
spec:
|
|
containers:
|
|
- name: mongo
|
|
image: mongo:7.0
|
|
command: ["/bin/bash", "-c"]
|
|
args:
|
|
- >
|
|
docker-entrypoint.sh mongod --wiredTigerCacheSizeGB ${wiredTigerCacheSizeGB} --auth &
|
|
until mongosh -u ${MONGO_INITDB_ROOT_USERNAME} -p ${MONGO_INITDB_ROOT_PASSWORD} --authenticationDatabase admin --eval "db.runCommand({ ping: 1 })" &>/dev/null; do
|
|
echo "Waiting for MongoDB to start...";
|
|
sleep 1;
|
|
done &&
|
|
mongosh -u ${MONGO_INITDB_ROOT_USERNAME} -p ${MONGO_INITDB_ROOT_PASSWORD} --authenticationDatabase admin --eval "
|
|
db = db.getSiblingDB(\"${MONGO_INITDB_DATABASE}\");
|
|
if (!db.getUser(\"${MONGO_OPENIM_USERNAME}\")) {
|
|
db.createUser({
|
|
user: \"${MONGO_OPENIM_USERNAME}\",
|
|
pwd: \"${MONGO_OPENIM_PASSWORD}\",
|
|
roles: [{role: \"readWrite\", db: \"${MONGO_INITDB_DATABASE}\"}]
|
|
});
|
|
print(\"User created successfully: \");
|
|
print(\"Username: ${MONGO_OPENIM_USERNAME}\");
|
|
print(\"Password: ${MONGO_OPENIM_PASSWORD}\");
|
|
print(\"Database: ${MONGO_INITDB_DATABASE}\");
|
|
} else {
|
|
print(\"User already exists in database: ${MONGO_INITDB_DATABASE}, Username: ${MONGO_OPENIM_USERNAME}\");
|
|
}
|
|
" &&
|
|
tail -f /dev/null
|
|
ports:
|
|
- containerPort: 27017
|
|
env:
|
|
- name: MONGO_INITDB_ROOT_USERNAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: mongo-secret
|
|
key: mongo_initdb_root_username
|
|
- name: MONGO_INITDB_ROOT_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: mongo-secret
|
|
key: mongo_initdb_root_password
|
|
- name: MONGO_INITDB_DATABASE
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: mongo-secret
|
|
key: mongo_initdb_database
|
|
- name: MONGO_OPENIM_USERNAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: mongo-secret
|
|
key: mongo_openim_username
|
|
- name: MONGO_OPENIM_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: mongo-secret
|
|
key: mongo_openim_password
|
|
- name: TZ
|
|
value: "Asia/Shanghai"
|
|
- name: wiredTigerCacheSizeGB
|
|
value: "1"
|
|
volumeMounts:
|
|
- name: mongo-storage
|
|
mountPath: /data/db
|
|
|
|
volumes:
|
|
- name: mongo-storage
|
|
persistentVolumeClaim:
|
|
claimName: mongo-pvc
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: mongo-pvc
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: 5Gi
|