mirror of
https://github.com/bitnami/charts.git
synced 2026-03-02 08:05:03 +08:00
[bitnami/redis] add PVC labels (#15353)
Signed-off-by: Alexander Alexandrov <alex.mirenki@gmail.com>
This commit is contained in:
committed by
GitHub
parent
f13df7b00f
commit
7109c7b492
@@ -22,4 +22,4 @@ maintainers:
|
||||
name: redis
|
||||
sources:
|
||||
- https://github.com/bitnami/containers/tree/main/bitnami/redis
|
||||
version: 17.8.2
|
||||
version: 17.8.3
|
||||
|
||||
@@ -196,6 +196,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `master.persistence.accessModes` | Persistent Volume access modes | `["ReadWriteOnce"]` |
|
||||
| `master.persistence.size` | Persistent Volume size | `8Gi` |
|
||||
| `master.persistence.annotations` | Additional custom annotations for the PVC | `{}` |
|
||||
| `master.persistence.labels` | Additional custom labels for the PVC | `{}` |
|
||||
| `master.persistence.selector` | Additional labels to match for the PVC | `{}` |
|
||||
| `master.persistence.dataSource` | Custom PVC data source | `{}` |
|
||||
| `master.persistence.existingClaim` | Use a existing PVC which must be created manually before bound | `""` |
|
||||
@@ -298,6 +299,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `replica.persistence.accessModes` | Persistent Volume access modes | `["ReadWriteOnce"]` |
|
||||
| `replica.persistence.size` | Persistent Volume size | `8Gi` |
|
||||
| `replica.persistence.annotations` | Additional custom annotations for the PVC | `{}` |
|
||||
| `replica.persistence.labels` | Additional custom labels for the PVC | `{}` |
|
||||
| `replica.persistence.selector` | Additional labels to match for the PVC | `{}` |
|
||||
| `replica.persistence.dataSource` | Custom PVC data source | `{}` |
|
||||
| `replica.persistence.existingClaim` | Use a existing PVC which must be created manually before bound | `""` |
|
||||
@@ -381,6 +383,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `sentinel.persistence.accessModes` | Persistent Volume access modes | `["ReadWriteOnce"]` |
|
||||
| `sentinel.persistence.size` | Persistent Volume size | `100Mi` |
|
||||
| `sentinel.persistence.annotations` | Additional custom annotations for the PVC | `{}` |
|
||||
| `sentinel.persistence.labels` | Additional custom labels for the PVC | `{}` |
|
||||
| `sentinel.persistence.selector` | Additional labels to match for the PVC | `{}` |
|
||||
| `sentinel.persistence.dataSource` | Custom PVC data source | `{}` |
|
||||
| `sentinel.persistence.medium` | Provide a medium for `emptyDir` volumes. | `""` |
|
||||
|
||||
@@ -499,6 +499,9 @@ spec:
|
||||
name: redis-data
|
||||
labels: {{- include "common.labels.matchLabels" . | nindent 10 }}
|
||||
app.kubernetes.io/component: master
|
||||
{{- if .Values.master.persistence.labels }}
|
||||
{{- toYaml .Values.master.persistence.labels | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- if .Values.master.persistence.annotations }}
|
||||
annotations: {{- toYaml .Values.master.persistence.annotations | nindent 10 }}
|
||||
{{- end }}
|
||||
|
||||
@@ -6,6 +6,9 @@ metadata:
|
||||
namespace: {{ .Release.Namespace | quote }}
|
||||
labels: {{- include "common.labels.matchLabels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: master
|
||||
{{- if .Values.master.persistence.labels }}
|
||||
{{- toYaml .Values.master.persistence.labels | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- if .Values.master.persistence.annotations }}
|
||||
annotations: {{- toYaml .Values.master.persistence.annotations | nindent 4 }}
|
||||
{{- end }}
|
||||
|
||||
@@ -496,6 +496,9 @@ spec:
|
||||
name: redis-data
|
||||
labels: {{- include "common.labels.matchLabels" . | nindent 10 }}
|
||||
app.kubernetes.io/component: replica
|
||||
{{- if .Values.replica.persistence.labels }}
|
||||
{{- toYaml .Values.replica.persistence.labels | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- if .Values.replica.persistence.annotations }}
|
||||
annotations: {{- toYaml .Values.replica.persistence.annotations | nindent 10 }}
|
||||
{{- end }}
|
||||
|
||||
@@ -753,6 +753,9 @@ spec:
|
||||
name: sentinel-data
|
||||
labels: {{- include "common.labels.matchLabels" . | nindent 10 }}
|
||||
app.kubernetes.io/component: node
|
||||
{{- if .Values.sentinel.persistence.labels }}
|
||||
{{- toYaml .Values.sentinel.persistence.labels | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- if .Values.sentinel.persistence.annotations }}
|
||||
annotations: {{- toYaml .Values.sentinel.persistence.annotations | nindent 10 }}
|
||||
{{- end }}
|
||||
|
||||
@@ -446,6 +446,9 @@ master:
|
||||
## @param master.persistence.annotations Additional custom annotations for the PVC
|
||||
##
|
||||
annotations: {}
|
||||
## @param master.persistence.labels Additional custom labels for the PVC
|
||||
##
|
||||
labels: {}
|
||||
## @param master.persistence.selector Additional labels to match for the PVC
|
||||
## e.g:
|
||||
## selector:
|
||||
@@ -860,6 +863,9 @@ replica:
|
||||
## @param replica.persistence.annotations Additional custom annotations for the PVC
|
||||
##
|
||||
annotations: {}
|
||||
## @param replica.persistence.labels Additional custom labels for the PVC
|
||||
##
|
||||
labels: {}
|
||||
## @param replica.persistence.selector Additional labels to match for the PVC
|
||||
## e.g:
|
||||
## selector:
|
||||
@@ -1148,6 +1154,9 @@ sentinel:
|
||||
## @param sentinel.persistence.annotations Additional custom annotations for the PVC
|
||||
##
|
||||
annotations: {}
|
||||
## @param sentinel.persistence.labels Additional custom labels for the PVC
|
||||
##
|
||||
labels: {}
|
||||
## @param sentinel.persistence.selector Additional labels to match for the PVC
|
||||
## e.g:
|
||||
## selector:
|
||||
|
||||
Reference in New Issue
Block a user