Skip to content

Commit 7172ee0

Browse files
committed
fix: nodeagent deprecation
Signed-off-by: Bence Csati <[email protected]>
1 parent 1a256b6 commit 7172ee0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

charts/logging-operator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Use `createCustomResource=false` with Helm v3 to avoid trying to create CRDs fro
9191
| logging.clusterDomain | string | `"cluster.local."` | Cluster domain name to be used when templating URLs to services |
9292
| logging.controlNamespace | string | `""` | Namespace for cluster wide configuration resources like ClusterFlow and ClusterOutput. This should be a protected namespace from regular users. Resources like fluentbit and fluentd will run in this namespace as well. |
9393
| logging.allowClusterResourcesFromAllNamespaces | bool | `false` | Allow configuration of cluster resources from any namespace. Mutually exclusive with ControlNamespace restriction of Cluster resources |
94-
| logging.nodeAgents | object | `{}` | NodeAgent Configuration |
94+
| logging.nodeAgents | list | `[]` | NodeAgent Configuration DEPRECATED: This field will be removed in a future release. |
9595
| logging.configCheck | object | `{}` | configCheck provides possibility for timeout-based configuration checks https://kube-logging.dev/docs/whats-new/#timeout-based-configuration-checks |
9696
| logging.enableRecreateWorkloadOnImmutableFieldChange | bool | `false` | EnableRecreateWorkloadOnImmutableFieldChange enables the operator to recreate the fluentbit daemonset and the fluentd statefulset (and possibly other resource in the future) in case there is a change in an immutable field that otherwise couldn’t be managed with a simple update. |
9797
| logging.enableDockerParserCompatibilityForCRI | bool | `false` | EnableDockerParserCompatibilityForCRI enables Docker log format compatibility for CRI workloads. |

charts/logging-operator/values.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@ logging:
207207
allowClusterResourcesFromAllNamespaces: false
208208

209209
# -- NodeAgent Configuration
210-
nodeAgents: {}
210+
# DEPRECATED: This field will be removed in a future release.
211+
nodeAgents: []
211212
# - name: win-agent
212213
# profile: windows
213214
# nodeAgentFluentbit:

0 commit comments

Comments
 (0)