Merge pull request 'Nicolas_local_ops' (#16) from Nicolas_local_ops into master

Reviewed-on: https://gitea.freeleaps.mathmast.com/freeleaps/freeleaps-ops/pulls/16
This commit is contained in:
Nicolas 2025-07-29 01:56:32 +00:00
commit e08d8a4ba2
6 changed files with 11 additions and 4 deletions

View File

@ -16,3 +16,7 @@ data:
AZURE_STORAGE_DOCUMENT_API_ENDPOINT: {{ .Values.centralStorage.configs.azureStorageDocumentApiEndpoint | b64enc | quote }} AZURE_STORAGE_DOCUMENT_API_ENDPOINT: {{ .Values.centralStorage.configs.azureStorageDocumentApiEndpoint | b64enc | quote }}
METRICS_ENABLED: {{ .Values.centralStorage.configs.metricsEnabled | default false | toString | b64enc }} METRICS_ENABLED: {{ .Values.centralStorage.configs.metricsEnabled | default false | toString | b64enc }}
PROBES_ENABLED: {{ .Values.centralStorage.configs.probesEnabled | default false | toString | b64enc }} PROBES_ENABLED: {{ .Values.centralStorage.configs.probesEnabled | default false | toString | b64enc }}
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 }}

View File

@ -47,8 +47,8 @@ spec:
include: include:
- {{ .Values.logIngest.logPathPattern }} - {{ .Values.logIngest.logPathPattern }}
start_at: end start_at: end
include_file_path: true include_file_path: false
include_file_name: true include_file_name: false
operators: operators:
- type: json_parser - type: json_parser
parse_from: body parse_from: body

View File

@ -87,6 +87,7 @@ centralStorage:
azureStorageDocumentApiEndpoint: https://freeleaps1document.blob.core.windows.net/ azureStorageDocumentApiEndpoint: https://freeleaps1document.blob.core.windows.net/
metricsEnabled: 'false' metricsEnabled: 'false'
probesEnabled: 'true' probesEnabled: 'true'
debugMode: 'false'
vpa: vpa:
minAllowed: minAllowed:
enabled: false enabled: false

View File

@ -52,7 +52,7 @@ devops:
baseGiteaUrl: https://gitea.freeleaps.mathmast.com baseGiteaUrl: https://gitea.freeleaps.mathmast.com
baseReconcileUrl: https://reconcile.freeleaps.mathmast.com baseReconcileUrl: https://reconcile.freeleaps.mathmast.com
baseLokiUrl: http://loki-gateway.freeleaps-logging-system baseLokiUrl: http://loki-gateway.freeleaps-logging-system
logBasePath: /app/log logBasePath: /app/log/devops
logRetention: 30 days logRetention: 30 days
logRotation: 00:00 logRotation: 00:00
logBackupFiles: '5' logBackupFiles: '5'

View File

@ -19,3 +19,4 @@ data:
CODE_DEPOT_DOMAIN_NAME: {{ .Values.devsvc.configs.codeDepotDomainName | b64enc | quote }} CODE_DEPOT_DOMAIN_NAME: {{ .Values.devsvc.configs.codeDepotDomainName | b64enc | quote }}
METRICS_ENABLED: {{ .Values.devsvc.configs.metricsEnabled | default false | toString | b64enc }} METRICS_ENABLED: {{ .Values.devsvc.configs.metricsEnabled | default false | toString | b64enc }}
PROBES_ENABLED: {{ .Values.devsvc.configs.probesEnabled | default false | toString | b64enc }} PROBES_ENABLED: {{ .Values.devsvc.configs.probesEnabled | default false | toString | b64enc }}
LOG_BASE_PATH: {{ .Values.devsvc.configs.logBasePath | default "/app/log/devsvc" | b64enc | quote }}

View File

@ -90,6 +90,7 @@ devsvc:
codeDepotDomainName: alpha.gitea.freeleaps.mathmast.com codeDepotDomainName: alpha.gitea.freeleaps.mathmast.com
metricsEnabled: 'false' metricsEnabled: 'false'
probesEnabled: 'true' probesEnabled: 'true'
logBasePath: /app/log/devsvc
vpa: vpa:
minAllowed: minAllowed:
enabled: false enabled: false