First commit

This commit is contained in:
sttlab
2026-05-03 11:54:33 +00:00
commit 0d1e5dd9b8
7 changed files with 766 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
# MongoDB - standalone with TLS, credentials sourced from existing secret
architecture: standalone
auth:
enabled: true
rootUser: root
usernames:
- gravitee
databases:
- gravitee
# Reference pre-created secret instead of inline passwords
existingSecret: mongodb-credentials
# Enable TLS on MongoDB server
tls:
enabled: true
autoGenerated: false
mTLS:
enabled: true
standalone:
existingSecret: mongodb-tls
extraFlags:
- "--tlsAllowConnectionsWithoutCertificates"
persistence:
enabled: true
size: 8Gi
storageClass: local-path
resources:
requests:
cpu: 200m
memory: 512Mi
limits:
cpu: 1000m
memory: 1Gi
service:
type: ClusterIP