Files
deprecated-helm-charts/stable/postgresql/values.yaml
T
Greg Taylor a7dbd55655 Separate postgres resource requests/limits.
Also bring them in line with our toYaml resources pattern that a growing
number of charts are using.
2016-11-05 01:06:30 -07:00

36 lines
783 B
YAML

## postgres image version
## ref: https://hub.docker.com/r/library/postgres/tags/
##
imageTag: "9.5.4"
## Specify a imagePullPolicy
## 'Always' if imageTag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
# imagePullPolicy:
## Create a database user
## Default: postgres
# postgresUser:
## Default: random 10 character string
# postgresPassword:
## Create a database
## Default: the postgres user
# postgresDatabase:
## Persist data to a persitent volume
persistence:
enabled: true
storageClass: generic
accessMode: ReadWriteOnce
size: 8Gi
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
requests:
memory: 256Mi
cpu: 100m