You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -13,6 +13,10 @@ Helm chart for yawol-controller
13
13
| Key | Type | Default | Description |
14
14
|-----|------|---------|-------------|
15
15
| featureGates | object |`{}`||
16
+
| logging | object |`{"encoding":"console","level":"info","stacktraceLevel":"error"}`| values are passed as zap-flags to the containers. See https://pkg.go.dev/sigs.k8s.io/[email protected]/pkg/log/zap#Options.BindFlags for more information |
17
+
| logging.encoding | string |`"console"`| log encoding (one of 'json' or 'console') |
18
+
| logging.level | string |`"info"`| Level to configure the verbosity of logging. Can be one of 'debug', 'info', 'error' or any integer value > 0 which corresponds to custom debug levels of increasing verbosity |
19
+
| logging.stacktraceLevel | string |`"error"`| level at and above which stacktraces are captured (one of 'info', 'error' or 'panic') |
16
20
| namespace | string |`"kube-system"`||
17
21
| podAnnotations | object |`{}`||
18
22
| podLabels | object |`{}`||
@@ -39,18 +43,26 @@ Helm chart for yawol-controller
Copy file name to clipboardExpand all lines: charts/yawol-controller/values.yaml
+10
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,16 @@ yawolCloudController:
28
28
serviceAccount: {}
29
29
#imagePullSecret: "registry-credentials"
30
30
31
+
# -- values are passed as zap-flags to the containers. See https://pkg.go.dev/sigs.k8s.io/[email protected]/pkg/log/zap#Options.BindFlags for more information
32
+
logging:
33
+
# -- Level to configure the verbosity of logging. Can be one of 'debug', 'info', 'error' or any integer value > 0 which corresponds to custom debug levels of increasing verbosity
34
+
level: info
35
+
# -- log encoding (one of 'json' or 'console')
36
+
encoding: console
37
+
# -- level at and above which stacktraces are captured (one of 'info', 'error' or 'panic')
0 commit comments