19 lines
353 B
YAML
19 lines
353 B
YAML
|
|
namespace: freeleaps-alpha
|
|||
|
|
replicaCount: 1
|
|||
|
|
resources:
|
|||
|
|
limits:
|
|||
|
|
cpu: "1000m"
|
|||
|
|
memory: "1Gi"
|
|||
|
|
image:
|
|||
|
|
repository: mongo
|
|||
|
|
tag: latest
|
|||
|
|
service:
|
|||
|
|
port: 27017
|
|||
|
|
containerPort: 27017
|
|||
|
|
persistence:
|
|||
|
|
enabled: true
|
|||
|
|
storageClass: "local-storage"
|
|||
|
|
accessMode: ReadWriteOnce
|
|||
|
|
size: 10Gi
|
|||
|
|
hostPath: "/mnt/mongodb-data" # Path on the node’s local disk
|