File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -26,15 +26,11 @@ metadata:
2626data :
2727 matchmaker_config_default.yaml : |-
2828 logging:
29- {{- if .Values.global.logging.level }}
30- level: {{ .Values.global.logging.level }}
31- {{- else }}
32- level: debug
33- {{- end }}
29+ level: {{ default "debug" .Values.global.logging.level }}
3430 {{- if .Values.global.telemetry.stackdriverMetrics.enabled }}
3531 format: stackdriver
3632 {{- else }}
37- format: text
33+ format: {{ default " text" .Values.global.logging.format }}
3834 {{- end }}
3935 rpc: {{ .Values.global.logging.rpc.enabled }}
4036 # Open Match applies the exponential backoff strategy for its retryable gRPC calls.
Original file line number Diff line number Diff line change @@ -290,6 +290,7 @@ global:
290290 mountPath : /app/secrets/tls/rootca
291291
292292 logging :
293+ level : info
293294 rpc :
294295 enabled : false
295296
Original file line number Diff line number Diff line change @@ -288,6 +288,8 @@ global:
288288 mountPath : /app/secrets/tls/rootca
289289
290290 logging :
291+ level : info
292+ format : text
291293 rpc :
292294 enabled : false
293295
You can’t perform that action at this time.
0 commit comments