24 lines
386 B
YAML
24 lines
386 B
YAML
replicaCount: 1
|
|
|
|
image:
|
|
repository: mongo
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
|
|
service:
|
|
port: 27017
|
|
|
|
persistence:
|
|
name: mongo-pvc-helm
|
|
enabled: true
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
storageClass: ""
|
|
|
|
secret:
|
|
username: dGVzdA== # base64 encoding of 'test'
|
|
password: dGVzdA== # base64 encoding of 'test'
|
|
|
|
mongo:
|
|
containerPort: 27017
|
|
pvcName: mongo-pvc-helm |