2025-02-21 09:59:08 +00:00
|
|
|
apiVersion: v1
|
|
|
|
|
kind: Secret
|
|
|
|
|
metadata:
|
|
|
|
|
name: authentication-config
|
|
|
|
|
namespace: {{ .Release.Namespace }}
|
|
|
|
|
type: Opaque
|
|
|
|
|
data:
|
|
|
|
|
TZ: {{ .Values.authentication.configs.tz | b64enc | quote }}
|
|
|
|
|
APP_NAME: {{ .Values.authentication.configs.appName | b64enc | quote }}
|
|
|
|
|
DEVSVC_WEBAPI_URL_BASE: {{ .Values.authentication.configs.devsvcWebapiUrlBase | b64enc | quote }}
|
|
|
|
|
NOTIFICATION_WEBAPI_URL_BASE: {{ .Values.authentication.configs.notificationWebapiUrlBase | b64enc | quote }}
|
|
|
|
|
JWT_SECRET_KEY: {{ .Values.authentication.configs.jwtSecretKey | b64enc | quote }}
|
|
|
|
|
JWT_ALGORITHM: {{ .Values.authentication.configs.jwtAlgorithm | b64enc | quote }}
|
2025-02-22 13:24:43 +00:00
|
|
|
SERVICE_API_ACCESS_HOST: {{ .Values.authentication.configs.serviceApiAccessHost | b64enc | quote }}
|
2025-02-22 13:27:19 +00:00
|
|
|
SERVICE_API_ACCESS_PORT: {{ .Values.authentication.configs.serviceApiAccessPort | quote | b64enc }}
|
2025-02-21 09:59:08 +00:00
|
|
|
MONGODB_NAME: {{ .Values.authentication.configs.mongodbName | b64enc | quote }}
|
2025-02-22 13:27:19 +00:00
|
|
|
MONGODB_PORT: {{ .Values.authentication.configs.mongodbPort | quote | b64enc }}
|
|
|
|
|
MONGODB_URI: {{ .Values.authentication.configs.mongodbUri | b64enc | quote }}1
|
2025-02-21 09:59:08 +00:00
|
|
|
|