diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index abeb6d42..9930998c 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -66,6 +66,9 @@ spec: - --disable-postgrest={{ .Values.disablePostgrest }} - --change-retention-days={{ .Values.configChangeRetentionDays }} - --analysis-retention-days={{ .Values.configAnalysisRetentionDays }} + {{- if .Values.jsonLogs }} + - --json-logs + {{- end }} {{- if .Values.db.runMigrations}} - --db-migrations {{- end}} diff --git a/chart/values.yaml b/chart/values.yaml index 92feb6b6..4cac7efb 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -26,6 +26,8 @@ image: configChangeRetentionDays: 60 configAnalysisRetentionDays: 60 +jsonLogs: true + # a list of configmaps to load scrape rules from, the configmap should have a single entry called "config.yaml" scrapeRuleConfigMaps: - config-db-rules