From 9817a8c09d469a044ad41c0a063f23ec201425fa Mon Sep 17 00:00:00 2001 From: Lars Seipel <ls@slrz.net> Date: Fri, 3 Mar 2023 15:04:32 +0100 Subject: [PATCH] charts: add explicit type conversion to prevent interpretation as int --- charts/geoip-fetcher/templates/secret.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/geoip-fetcher/templates/secret.yaml b/charts/geoip-fetcher/templates/secret.yaml index b2deea4..daef759 100644 --- a/charts/geoip-fetcher/templates/secret.yaml +++ b/charts/geoip-fetcher/templates/secret.yaml @@ -7,7 +7,7 @@ metadata: {{- include "geoip-fetcher.labels" . | nindent 4 }} data: GEO_BUCKET_NAME: {{ .Values.bucketName | b64enc | quote }} - GEOIP_ACCOUNT_ID: {{ .Values.geoipAccountId | b64enc | quote }} + GEOIP_ACCOUNT_ID: {{ .Values.geoipAccountId | toString | b64enc | quote }} GEOIP_LICENSE_KEY: {{ .Values.geoipLicenseKey | b64enc | quote }} AWS_ACCESS_KEY_ID: {{ .Values.awsAccessKeyId | b64enc | quote }} AWS_SECRET_ACCESS_KEY: {{ .Values.awsSecretAccessKey | b64enc | quote }} -- GitLab