mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-20 10:35:57 +10:00
Synchronize upstreamed folder to 5230e0b
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
name: redis
|
||||
version: 3.0.6
|
||||
version: 3.1.0
|
||||
appVersion: 4.0.9
|
||||
description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
|
||||
keywords:
|
||||
|
||||
@@ -73,6 +73,7 @@ The following table lists the configurable parameters of the Redis chart and the
|
||||
| `metrics.podAnnotations` | Additional annotations for Metrics exporter pod | {} |
|
||||
| `metrics.targetServiceAnnotations` | Annotations for the services to monitor (redis master and redis slave service) | {} |
|
||||
| `metrics.resources` | Exporter resource requests/limit | Memory: `256Mi`, CPU: `100m` |
|
||||
| `persistence.existingClaim` | Provide an existing PersistentVolumeClaim | `nil` |
|
||||
| `master.persistence.enabled` | Use a PVC to persist data (master node) | `true` |
|
||||
| `master.persistence.path` | Path to mount the volume at, to use other images | `/bitnami` |
|
||||
| `master.persistence.subPath` | Subdirectory of the volume to mount at | `""` |
|
||||
|
||||
@@ -118,6 +118,12 @@ spec:
|
||||
- name: "redis-data"
|
||||
emptyDir: {}
|
||||
{{- else }}
|
||||
{{- if .Values.persistence.existingClaim }}
|
||||
volumes:
|
||||
- name: "redis-data"
|
||||
persistentVolumeClaim:
|
||||
claimName: {{ .Values.persistence.existingClaim }}
|
||||
{{- else }}
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
name: redis-data
|
||||
@@ -142,4 +148,5 @@ spec:
|
||||
storageClassName: {{ .Values.master.persistence.storageClass | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
@@ -70,6 +70,13 @@ password:
|
||||
## Use existing secret (ignores previous password)
|
||||
# existingSecret:
|
||||
|
||||
## Persist data to a persitent volume
|
||||
persistence: {}
|
||||
## A manually managed Persistent Volume and Claim
|
||||
## Requires persistence.enabled: true
|
||||
## If defined, PVC must be created manually before volume will be bound
|
||||
# existingClaim:
|
||||
|
||||
##
|
||||
## Redis Master parameters
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user