Skip to content

Commit eafb49f

Browse files
authored
change the fluentd internal log destination to null (#265)
1 parent f2d74f1 commit eafb49f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/crds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ You can customize the `fluentd` statefulset with the following parameters.
105105
| metrics | [Metrics](./logging-operator-monitoring.md#metrics-variables) | {} | Metrics defines the service monitor endpoints |
106106
| security | [Security](./security#security-variables) | {} | Security defines Fluentd, Fluentbit deployment security properties |
107107
| podPriorityClassName | string | "" | Name of a priority class to launch fluentd with |
108-
| fluentLogDestination | string | "stdout" | Send internal fluentd logs to stdout, or use "null" to omit them |
108+
| fluentLogDestination | string | "null" | Send internal fluentd logs to stdout, or use "null" to omit them |
109109

110110

111111
**`logging` with custom pvc volume for buffers**

pkg/sdk/api/v1beta1/logging_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func (l *Logging) SetDefaults() (*Logging, error) {
194194
}
195195
}
196196
if copy.Spec.FluentdSpec.FluentLogDestination == "" {
197-
copy.Spec.FluentdSpec.FluentLogDestination = "stdout"
197+
copy.Spec.FluentdSpec.FluentLogDestination = "null"
198198
}
199199
}
200200
if copy.Spec.FluentbitSpec != nil {

0 commit comments

Comments
 (0)