2025-02-22 16:20:13 +00:00
|
|
|
apiVersion: v1
|
|
|
|
|
kind: Secret
|
|
|
|
|
metadata:
|
|
|
|
|
name: central-storage-config
|
|
|
|
|
namespace: {{ .Release.Namespace }}
|
|
|
|
|
type: Opaque
|
|
|
|
|
data:
|
|
|
|
|
TZ: {{ .Values.centralStorage.configs.tz | b64enc | quote }}
|
|
|
|
|
APP_NAME: {{ .Values.centralStorage.configs.appName | b64enc | quote }}
|
|
|
|
|
SERVICE_API_ACCESS_HOST: {{ .Values.centralStorage.configs.serviceApiAccessHost | b64enc | quote }}
|
|
|
|
|
SERVICE_API_ACCESS_PORT: {{ .Values.centralStorage.configs.serviceApiAccessPort | toString | b64enc }}
|
|
|
|
|
MONGODB_NAME: {{ .Values.centralStorage.configs.mongodbName | b64enc | quote }}
|
|
|
|
|
MONGODB_PORT: {{ .Values.centralStorage.configs.mongodbPort | toString | b64enc }}
|
|
|
|
|
MONGODB_URI: {{ .Values.centralStorage.configs.mongodbUri | b64enc | quote }}
|
|
|
|
|
AZURE_STORAGE_DOCUMENT_API_KEY: {{ .Values.centralStorage.configs.azureStorageDocumentApiKey | b64enc | quote }}
|
|
|
|
|
AZURE_STORAGE_DOCUMENT_API_ENDPOINT: {{ .Values.centralStorage.configs.azureStorageDocumentApiEndpoint | b64enc | quote }}
|
2025-03-17 15:51:35 +00:00
|
|
|
METRICS_ENABLED: {{ .Values.centralStorage.configs.metricsEnabled | default false | toString | b64enc }}
|
2025-07-28 13:00:33 +00:00
|
|
|
PROBES_ENABLED: {{ .Values.centralStorage.configs.probesEnabled | default false | toString | b64enc }}
|
2025-07-29 01:36:01 +00:00
|
|
|
DEBUG_MODE: {{ .Values.centralStorage.configs.debugMode | default false | toString | b64enc }}
|
|
|
|
|
LOG_BASE_PATH: {{ .Values.logIngest.logPath | b64enc | quote }}
|
|
|
|
|
BACKEND_LOG_FILE_NAME: {{ .Values.centralStorage.configs.appName | b64enc | quote }}
|
|
|
|
|
APPLICATION_ACTIVITY_LOG: {{ .Values.centralStorage.configs.appName | printf "%s-activity" | b64enc | quote }}
|