Files
deprecated-helm-charts/stable/percona/values.yaml
T
gaofly 263dbbd969 fix an error in line 47,change the word 'tables' to 'table' (#4358)
* add a new version to it

upgrade the version of it

* find an error in line 47,update README.md

find an error in line 47 of README.md,the word 'tables' should be changed to 'table'

* Removing trailing space to pass lint
2018-03-20 07:47:12 -07:00

51 lines
1.2 KiB
YAML

## percona image version
## ref: https://hub.docker.com/r/library/percona/tags/
##
imageTag: "5.7.17"
## Specify password for root user
##
## Default: random 10 character string
# mysqlRootPassword: testing
## Create a database user
##
# mysqlUser:
# mysqlPassword:
## Allow unauthenticated access, uncomment to enable
##
# mysqlAllowEmptyPassword: true
## Create a database
##
# mysqlDatabase:
## Specify an imagePullPolicy (Required)
## It's recommended to change this to 'Always' if the image tag is 'latest'
## ref: http://kubernetes.io/docs/user-guide/images/#updating-images
##
imagePullPolicy: IfNotPresent
## Persist data to a persitent volume
persistence:
enabled: false
## percona data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: "-"
accessMode: ReadWriteOnce
size: 8Gi
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
requests:
memory: 256Mi
cpu: 100m