Skip to content

Commit

Permalink
fix: do not eat whitespace unnecessarily
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyannn committed Jan 6, 2024
1 parent bc2ccd9 commit a0b9e19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions langfuse/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ If release name contains chart name it will be used as a full name.
{{- end }}

{{- define "langfuse.internalSecret.annotations" -}}
{{- if .Values.secrets.internal.keepWhenUninstalled -}}
{{- if .Values.secrets.internal.keepWhenUninstalled }}
"helm.sh/resource-policy": "keep"
"argocd.argoproj.io/sync-options": "Prune=false"
{{- end }}
Expand All @@ -43,7 +43,7 @@ If release name contains chart name it will be used as a full name.
{{- end }}

{{- define "langfuse.postgresqlSecret.annotations" -}}
{{- if .Values.secrets.postgresql.keepWhenUninstalled -}}
{{- if .Values.secrets.postgresql.keepWhenUninstalled }}
"helm.sh/resource-policy": "keep"
"argocd.argoproj.io/sync-options": "Prune=false"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion langfuse/templates/internal-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{{- include "langfuse.mergeSecretWithRandomForKeys" (dict
"name" (include "langfuse.internalSecret" .)
"annotations" (include "langfuse.internalSecret.annotations" .)
"keys" (list "salt" "auth-secret")
"keys" (list "salt" "auth-secret")
"context" .
) -}}

Expand Down

0 comments on commit a0b9e19

Please sign in to comment.