We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fe3cfe commit 0ccf1beCopy full SHA for 0ccf1be
charts/fluent-operator/MIGRATION-v4.md
@@ -86,18 +86,14 @@ The operator initContainer has been removed.
86
87
**Migration:**
88
89
-```yaml
90
-# v3.x configuration (DEPRECATED)
91
-operator:
92
- logPath:
93
- containerd: /var/log
94
95
-# v4.0 - Use direct path specification
96
97
- containerLogPath: "/var/log/containers"
+In v3 the root directory was specified for the log path. In v4 this will be the full path to the container logs folder.
98
99
-# Note: The v3 config specified the ROOT directory
100
-# The v4 config specifies the FULL path to containers directory
+```diff
+ operator:
+- logPath:
+- containerd: /var/log
++ containerLogPath: "/var/log/containers"
101
```
102
103
## Default Paths by Runtime
0 commit comments