-
Notifications
You must be signed in to change notification settings - Fork 987
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing missing prefix for extraInputs #899
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ helm delete aws-for-fluent-bit --namespace kube-system | |
| `service.parsersFiles` | List of available parser files | `/fluent-bit/parsers/parsers.conf` | | ||
| `service.extraParsers` | Adding more parsers with this value | `""` | | ||
| `input.*` | Values for Kubernetes input | | | ||
| `extraInputs` | Append to existing input with this value | `""` | | ||
| `input.extraInputs` | Append to existing input with this value | `""` | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think what this is meant to do is to append to the kubernetes tail input. Because when I do a simple silly test:
The new data is added indented to the existing tail input. So you could use this to set other values in it, like for example Ignore_Older:
I think this was added because the So basically, the name here is wrong/misleading. It should be something like I think the I don't know how this works- can we bump the chart version and change the setting name? If not, can you please make the help text here much more clear: "Append other config options to the kubernetes tail input" something like that. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks @PettitWesley - While I understand your points, I simply wanted to correct a typo in the readme. The functionality and naming therein should be out of scope for this, right? At least people working with the current version will then not make the same mistake I did, as the name will be correct. Imo all of the names need to be reworked, because they're not consistent and are all confusing:
Unfortunately I don't have time right now to devote to such a PR, however 😅 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fair point. I still think the language in your PR needs to be edited even just for this option. It should be clear what "existing input" means.
would be prefered by me There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there is also another issue here that the CI only lets you merge updates that change the chart version, which I'll have to look into. |
||
| `additionalInputs` | Adding more inputs with this value | `""` | | ||
| `filter.*` | Values for kubernetes filter | | | ||
| `filter.extraFilters` | Append to existing filter with value | | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Can you fix the language above too? This is the kubernetes tail log file input.