From 9a9d2fb80ed95da12e8a36fa8bb36b15141ea95b Mon Sep 17 00:00:00 2001 From: zhenyus Date: Sat, 22 Feb 2025 21:26:26 +0800 Subject: [PATCH] fix(authentication): add base64 encoding for SERVICE_API_ACCESS_PORT and MONGODB_PORT in authentication-config.yaml Signed-off-by: zhenyus --- .../templates/authentication/authentication-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freeleaps/helm-pkg/authentication/templates/authentication/authentication-config.yaml b/freeleaps/helm-pkg/authentication/templates/authentication/authentication-config.yaml index b1f957bc..2901c43b 100644 --- a/freeleaps/helm-pkg/authentication/templates/authentication/authentication-config.yaml +++ b/freeleaps/helm-pkg/authentication/templates/authentication/authentication-config.yaml @@ -12,8 +12,8 @@ data: JWT_SECRET_KEY: {{ .Values.authentication.configs.jwtSecretKey | b64enc | quote }} JWT_ALGORITHM: {{ .Values.authentication.configs.jwtAlgorithm | b64enc | quote }} SERVICE_API_ACCESS_HOST: {{ .Values.authentication.configs.serviceApiAccessHost | b64enc | quote }} - SERVICE_API_ACCESS_PORT: {{ .Values.authentication.configs.serviceApiAccessPort }} + SERVICE_API_ACCESS_PORT: {{ .Values.authentication.configs.serviceApiAccessPort | b64enc | quote }} MONGODB_NAME: {{ .Values.authentication.configs.mongodbName | b64enc | quote }} - MONGODB_PORT: {{ .Values.authentication.configs.mongodbPort }} + MONGODB_PORT: {{ .Values.authentication.configs.mongodbPort | b64enc | quote }} MONGODB_URI: {{ .Values.authentication.configs.mongodbUri | b64enc | quote }} \ No newline at end of file