mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/parse] Update dependencies to latest version (#6037)
This commit is contained in:
committed by
k8s-ci-robot
parent
1c4bd9a721
commit
09adcfe694
@@ -1,5 +1,5 @@
|
||||
name: parse
|
||||
version: 1.0.6
|
||||
version: 2.0.0
|
||||
appVersion: 2.8.1
|
||||
description: Parse is a platform that enables users to add a scalable and powerful backend to launch a full-featured app for iOS, Android, JavaScript, Windows, Unity, and more.
|
||||
keywords:
|
||||
|
||||
@@ -71,6 +71,8 @@ The following table lists the configurable parameters of the Parse chart and the
|
||||
| `persistence.storageClass` | PVC Storage Class for Parse volume | `nil` (uses alpha storage class annotation) |
|
||||
| `persistence.accessMode` | PVC Access Mode for Parse volume | `ReadWriteOnce` |
|
||||
| `persistence.size` | PVC Storage Request for Parse volume | `8Gi` |
|
||||
| `mongodb.usePassword` | Enable MongoDB password authentication | `true` |
|
||||
| `mongodb.password` | MongoDB admin password | `nil` |
|
||||
| `mongodb.persistence.enabled` | Enable MongoDB persistence using PVC | `true` |
|
||||
| `mongodb.persistence.storageClass` | PVC Storage Class for MongoDB volume | `nil` (uses alpha storage class annotation) |
|
||||
| `mongodb.persistence.accessMode` | PVC Access Mode for MongoDB volume | `ReadWriteOnce` |
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
dependencies:
|
||||
- name: mongodb
|
||||
repository: https://kubernetes-charts.storage.googleapis.com/
|
||||
version: 0.4.24
|
||||
digest: sha256:13691f4fa1d39a912a1a47710bd95e2442584e6d50a75b222412087ba46770c7
|
||||
generated: 2018-04-30T10:49:23.667014102+02:00
|
||||
version: 2.0.9
|
||||
digest: sha256:cf5e28c1a27636f9471953712706834f87e49cb40be80c303a1436ee7e5016e5
|
||||
generated: 2018-06-11T14:45:27.64207443+02:00
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
dependencies:
|
||||
- name: mongodb
|
||||
version: 0.4.24
|
||||
version: 2.x.x
|
||||
repository: https://kubernetes-charts.storage.googleapis.com/
|
||||
|
||||
@@ -45,6 +45,13 @@ spec:
|
||||
value: {{ template "parse.mongodb.fullname" . }}
|
||||
- name: MONGODB_PORT
|
||||
value: "27017"
|
||||
{{- if .Values.mongodb.usePassword }}
|
||||
- name: MONGODB_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ template "parse.mongodb.fullname" . }}
|
||||
key: mongodb-root-password
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: server-http
|
||||
containerPort: {{ .Values.server.port }}
|
||||
|
||||
@@ -124,6 +124,11 @@ persistence:
|
||||
## MongoDB chart configuration
|
||||
##
|
||||
mongodb:
|
||||
## MongoDB Password authentication
|
||||
usePassword: true
|
||||
## If the password is not specified, MongoDB will generate a random password
|
||||
##
|
||||
# mongodbRootPassword:
|
||||
## Enable persistence using Persistent Volume Claims
|
||||
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user