fix(helmfile): Add logLevel to globals

This commit is contained in:
Thorsten Roßner
2023-12-22 00:22:07 +01:00
committed by Thorsten Rossner
parent c2e9204c56
commit 8db9bf3c99
2 changed files with 4 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ config:
user: {{ .Values.databases.keycloak.username | quote }}
database: {{ .Values.databases.keycloak.name | quote }}
password: {{ .Values.databases.keycloak.password | default .Values.secrets.postgresql.keycloakUser | quote }}
logLevel: "DEBUG"
logLevel: {{ .Values.debug.logLevel | quote }}
enableMetrics: true
# The availability of the admin console is already restricted through the path settings in the Keycloak Extensions
# Proxy which is used in openDesk. The setting here is just relevant when Keycloak endpoints are exposed directly

View File

@@ -10,4 +10,7 @@ cleanup:
keepPVCOnDelete: false
# Keep additional resources, like certificates on deletion of this release.
keepRessourceOnDelete: true
debug:
# Currently used in: umsKeycloak
logLevel: "INFO"
...