Skip to content

Commit

Permalink
Fixed additional configuration properties and secret properties bug b…
Browse files Browse the repository at this point in the history
…y removing "quotes" tag.
  • Loading branch information
Secchol committed Oct 16, 2024
1 parent f60fd28 commit 0ea0a57
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/graphdb/configmap-properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ data:
##### Overrides from values.yaml #####
{{- range $key, $val := .Values.configuration.properties -}}
{{- if ne $val nil }}
{{ $key }}={{ tpl ($val | toString) $ | quote }}
{{ $key }}={{ tpl ($val | toString) $ }}
{{- end }}
{{- end -}}
{{- end -}}
2 changes: 1 addition & 1 deletion templates/graphdb/secret-properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ stringData:
##### Secrets overrides from values.yaml #####
{{- range $key, $val := .Values.configuration.secretProperties -}}
{{- if ne $val nil }}
{{ $key }}={{ tpl ($val | toString) $ | quote }}
{{ $key }}={{ tpl ($val | toString) $ }}
{{- end }}
{{- end -}}
{{- end -}}
2 changes: 1 addition & 1 deletion templates/proxy/configmap-properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ data:
##### Overrides from values.yaml #####
{{- range $key, $val := .Values.proxy.configuration.properties -}}
{{- if ne $val nil }}
{{ $key }}={{ tpl ($val | toString) $ | quote }}
{{ $key }}={{ tpl ($val | toString) $ }}
{{- end }}
{{- end -}}
{{- end -}}
Expand Down
2 changes: 1 addition & 1 deletion templates/proxy/secret-properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ stringData:
##### Secrets overrides from values.yaml #####
{{- range $key, $val := .Values.proxy.configuration.secretProperties -}}
{{- if ne $val nil }}
{{ $key }}={{ tpl ($val | toString) $ | quote }}
{{ $key }}={{ tpl ($val | toString) $ }}
{{- end }}
{{- end -}}
{{- end -}}
Expand Down

0 comments on commit 0ea0a57

Please sign in to comment.