Skip to content

Commit

Permalink
change the fluentd internal log destination to null (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepov authored Nov 26, 2019
1 parent f2d74f1 commit eafb49f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/crds.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ You can customize the `fluentd` statefulset with the following parameters.
| metrics | [Metrics](./logging-operator-monitoring.md#metrics-variables) | {} | Metrics defines the service monitor endpoints |
| security | [Security](./security#security-variables) | {} | Security defines Fluentd, Fluentbit deployment security properties |
| podPriorityClassName | string | "" | Name of a priority class to launch fluentd with |
| fluentLogDestination | string | "stdout" | Send internal fluentd logs to stdout, or use "null" to omit them |
| fluentLogDestination | string | "null" | Send internal fluentd logs to stdout, or use "null" to omit them |


**`logging` with custom pvc volume for buffers**
Expand Down
2 changes: 1 addition & 1 deletion pkg/sdk/api/v1beta1/logging_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func (l *Logging) SetDefaults() (*Logging, error) {
}
}
if copy.Spec.FluentdSpec.FluentLogDestination == "" {
copy.Spec.FluentdSpec.FluentLogDestination = "stdout"
copy.Spec.FluentdSpec.FluentLogDestination = "null"
}
}
if copy.Spec.FluentbitSpec != nil {
Expand Down

0 comments on commit eafb49f

Please sign in to comment.