mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* [stable/parse] deploys a parse server and optionally the parse dashboard * parse: add standard labels to pod metadata * parse: bump mongodb requirement version * parse: bump chart images * parse: bump chart version * parse: use `name` template for app labels * parse: fixed app labels * parse: removed `chart` and `heritage` labels from teh Pod spec * parse: append `-server` to parse server deployment name * parse: drop `Chart.Name` from `component` labels * parse: drop use of `default ""` in templates * parse: disambiguate server and dashboard pod name's in NOTES.txt * parse: add Release.Name to service selectors * parse: disabled default resource limits * parse: fix pod selector in NOTES.txt * parse: renamed `parse` and `parseDashboard` value keys to `server` and `dashboard` respectively * parse: comment out the `loadBalancerIP` field in `values.yaml` * parse: fix empty resources * parse: fix requirements.yaml
116 lines
3.0 KiB
YAML
116 lines
3.0 KiB
YAML
## Kubernetes serviceType for Parse Deployment
|
|
## ref: http://kubernetes.io/docs/user-guide/services/#publishing-services---service-types
|
|
##
|
|
serviceType: LoadBalancer
|
|
|
|
## loadBalancerIP for the Parse Service (optional, cloud specific)
|
|
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
|
|
##
|
|
# loadBalancerIP:
|
|
|
|
server:
|
|
## Bitnami Parse image version
|
|
## ref: https://hub.docker.com/r/bitnami/parse/tags/
|
|
##
|
|
image: bitnami/parse:2.5.3-r0
|
|
|
|
## Specify a imagePullPolicy
|
|
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
imagePullPolicy: IfNotPresent
|
|
|
|
## Parse Server Port
|
|
## ref: https://github.com/bitnami/bitnami-docker-parse#configuration
|
|
##
|
|
port: 1337
|
|
|
|
## Parse API mount path
|
|
## ref: https://github.com/bitnami/bitnami-docker-parse#configuration
|
|
##
|
|
mountPath: /parse
|
|
|
|
## Parse Server App ID
|
|
## ref: https://github.com/bitnami/bitnami-docker-parse#configuration
|
|
##
|
|
appId: myappID
|
|
|
|
## Parse Server Master Key
|
|
## ref: https://github.com/bitnami/bitnami-docker-parse#configuration
|
|
##
|
|
# masterKey:
|
|
|
|
## Configure resource requests and limits
|
|
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
|
##
|
|
resources:
|
|
# requests:
|
|
# memory: 512Mi
|
|
# cpu: 300m
|
|
|
|
dashboard:
|
|
## Enable deployment of Parse Dashboard
|
|
##
|
|
enabled: true
|
|
|
|
## Bitnami Parse Dashboard image version
|
|
## ref: https://hub.docker.com/r/bitnami/parse-dashboard/tags/
|
|
##
|
|
image: bitnami/parse-dashboard:1.1.0-r0
|
|
|
|
## Specify a imagePullPolicy
|
|
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
imagePullPolicy: IfNotPresent
|
|
|
|
## Parse Dashboard application username
|
|
## ref: https://github.com/bitnami/bitnami-docker-parse-dashboard#configuration
|
|
##
|
|
username: user
|
|
|
|
## Parse Dashboard application password
|
|
## Defaults to a random 10-character alphanumeric string if not set
|
|
## ref: https://github.com/bitnami/bitnami-docker-parse-dashboard#configuration
|
|
##
|
|
# password:
|
|
|
|
## Parse Dashboard application name
|
|
## ref: https://github.com/bitnami/bitnami-docker-parse-dashboard#configuration
|
|
##
|
|
appName: MyDashboard
|
|
|
|
## Configure resource requests and limits
|
|
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
|
##
|
|
resources: {}
|
|
# requests:
|
|
# memory: 512Mi
|
|
# cpu: 300m
|
|
|
|
## Enable persistence using Persistent Volume Claims
|
|
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
|
##
|
|
persistence:
|
|
enabled: true
|
|
## If defined, volume.beta.kubernetes.io/storage-class: <storageClass>
|
|
## Default: volume.alpha.kubernetes.io/storage-class: default
|
|
##
|
|
# storageClass:
|
|
accessMode: ReadWriteOnce
|
|
size: 8Gi
|
|
|
|
##
|
|
## MongoDB chart configuration
|
|
##
|
|
mongodb:
|
|
## Enable persistence using Persistent Volume Claims
|
|
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
|
##
|
|
persistence:
|
|
enabled: true
|
|
## If defined, volume.beta.kubernetes.io/storage-class: <storageClass>
|
|
## Default: volume.alpha.kubernetes.io/storage-class: default
|
|
##
|
|
# storageClass:
|
|
accessMode: ReadWriteOnce
|
|
size: 8Gi
|