diff options
author | terminaldweller <thabogre@gmail.com> | 2021-10-31 01:44:00 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-10-31 01:44:00 +0000 |
commit | 965a52ac2b20d0177719c86dc2a1d18903e9a017 (patch) | |
tree | 0ffdac57d934b761ec9230b5368cdf289d3fdd62 /kubernetes/mongodb/mongodb-deployment.yaml | |
parent | opewrt,haproxy,nginx,ejabberd,.... (diff) | |
download | scripts-965a52ac2b20d0177719c86dc2a1d18903e9a017.tar.gz scripts-965a52ac2b20d0177719c86dc2a1d18903e9a017.zip |
updates
Diffstat (limited to '')
-rw-r--r-- | kubernetes/mongodb/mongodb-deployment.yaml | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/kubernetes/mongodb/mongodb-deployment.yaml b/kubernetes/mongodb/mongodb-deployment.yaml new file mode 100644 index 0000000..778fd60 --- /dev/null +++ b/kubernetes/mongodb/mongodb-deployment.yaml @@ -0,0 +1,66 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mongodb + labels: + app: mongodb +spec: + replicas: 1 + selector: + matchLabels: + app: mongodb + template: + metadata: + labels: + app: mongodb + spec: + containers: + - name: mongodb + image: mongo:4.4.10 + ports: + - containerPort: 27017 + - containerPort: 27018 + - containerPort: 27019 + env: + - name: MONGO_INITDB_ROOT_USERNAME + valueFrom: + secretKeyRef: + name: mongodb-secrets + key: mongodb-root-username + - name: MONGO_INITDB_ROOT_PASSWORD + valueFrom: + secretKeyRef: + name: mongodb-secrets + key: mongodb-root-password + volumeMounts: + - mountPath: /data/db + name: mongo-data + volumes: + - name: mongo-data + persistentVolumeClaim: + claimName: mongo-data +--- +apiVersion: v1 +kind: Service +metadata: + name: mongodb-service +spec: + selector: + app: mongodb + type: LoadBalancer + ports: + - protocol: TCP + name: "6617" + port: 27117 + targetPort: 27017 + nodePort: 30017 + - protocol: TCP + name: "6618" + port: 27118 + targetPort: 27018 + nodePort: 30018 + - protocol: TCP + name: "6619" + port: 27119 + targetPort: 27019 + nodePort: 30019 |