feat(Wordpress): Fix quotes (#5161)

This commit is contained in:
StevenMcElligott 2022-12-06 12:04:30 -05:00 committed by GitHub
parent fab7362ae0
commit 5db5f8e281
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/wordpress
- https://hub.docker.com/_/wordpress
- https://www.wordpress.org
version: 0.0.3
version: 0.0.4
annotations:
truecharts.org/catagories: |
- website

View File

@ -65,11 +65,11 @@ data:
WORDPRESS_DATABASE_HOST: {{ printf "%v-%v" .Release.Name "mariadb" | b64enc }}
WORDPRESS_DATABASE_PASSWORD: {{ .Values.mariadb.mariadbPassword | trimAll "\"" | b64enc }}
WORDPRESS_PASSWORD: {{ .Values.wordpress.pass | quote | b64enc }}
WORDPRESS_PASSWORD: {{ .Values.wordpress.pass | b64enc }}
{{- if .Values.smtp.enabled }}
WORDPRESS_SMTP_USER: {{ .Values.smtp.user | quote | b64enc }}
WORDPRESS_SMTP_PASSWORD: {{ .Values.smtp.pass | quote | b64enc }}
WORDPRESS_SMTP_USER: {{ .Values.smtp.user | b64enc }}
WORDPRESS_SMTP_PASSWORD: {{ .Values.smtp.pass | b64enc }}
{{- end }}
{{/* Salts */}}