mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/mongodb] Fix #14187, adding quotes around annotation values while rendering StatefulSet PVC templates. (#14188)
Signed-off-by: root <jhm@juliohm.com.br> Bump chart version Signed-off-by: juliohm1978 <jhm@juliohm.com.br>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
b4c2be53a7
commit
0ed21dcb87
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: mongodb
|
||||
version: 5.17.4
|
||||
version: 5.17.5
|
||||
appVersion: 4.0.10
|
||||
description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications.
|
||||
keywords:
|
||||
|
||||
@@ -251,7 +251,7 @@ spec:
|
||||
name: datadir
|
||||
annotations:
|
||||
{{- range $key, $value := .Values.persistence.annotations }}
|
||||
{{ $key }}: {{ $value }}
|
||||
{{ $key }}: "{{ $value }}"
|
||||
{{- end }}
|
||||
spec:
|
||||
accessModes:
|
||||
|
||||
@@ -225,7 +225,7 @@ spec:
|
||||
name: datadir
|
||||
annotations:
|
||||
{{- range $key, $value := .Values.persistence.annotations }}
|
||||
{{ $key }}: {{ $value }}
|
||||
{{ $key }}: "{{ $value }}"
|
||||
{{- end }}
|
||||
spec:
|
||||
accessModes:
|
||||
|
||||
Reference in New Issue
Block a user