-
Notifications
You must be signed in to change notification settings - Fork 309
fix: fix the e2e test script for fluentd #1791
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
Changes from all commits
896b040
47741bd
7a52252
4f2bbbf
6de3c26
4c9a79a
0ac9a3e
9a974d1
8a37684
e03751e
16d5377
cf07943
a967b4a
aae20be
0289c96
04cbd68
78bc5a1
5cdcee9
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 | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1 +1 @@ | ||||||||
| v3.5.0 | ||||||||
| latest | ||||||||
|
Collaborator
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. Don't think this change belongs to this PR
Suggested change
Collaborator
Author
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. it will block the test to run successfully if we don't fix it. see here
Collaborator
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. Changing this will break stuff like releases, we rather fix it in the script by doing a sed replacement or something like that.
Collaborator
Author
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. No, the release #1741 should be actually be merged into a separate release branch and keep the master's version to latest. There was a mistake that we didn't create a release branch for v3.5.0 Please check the file history and you will know.
Collaborator
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. Ok. Guess that is fine for now, IMHO we should change that release process. Just make releases straight on main. if there is ever a need to hotfix a release, we can always create the branch from the last minor tag. hope to get some time redesigning the release automation and the manual process to simplify this. It is overly complicated imho. |
||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| <source> | ||
| @type forward | ||
| bind 0.0.0.0 | ||
| port 24224 | ||
| </source> | ||
| <match **> | ||
| @id main | ||
| @type label_router | ||
| <route> | ||
| @label @5789d57841808bf91cfb0ed603d9ee86 | ||
| <match> | ||
| namespaces fluent | ||
| </match> | ||
| </route> | ||
| </match> | ||
| <label @5789d57841808bf91cfb0ed603d9ee86> | ||
| <filter **> | ||
| @id FluentdConfig-fluent-fluentd-config-label-selector-test::fluent::filter::test-filter-recordtransformer-0 | ||
| @type record_transformer | ||
| <record> | ||
| environment testing | ||
| hostname test-host | ||
| </record> | ||
| </filter> | ||
| <match **> | ||
| @id FluentdConfig-fluent-fluentd-config-label-selector-test::fluent::output::test-output-stdout-0 | ||
| @type stdout | ||
| </match> | ||
| </label> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| <source> | ||
| @type forward | ||
| bind 0.0.0.0 | ||
| port 24224 | ||
| </source> | ||
| <match **> | ||
| @id main | ||
| @type label_router | ||
| <route> | ||
| @label @7d670e99fb44ef7d003c936b2c226ac3 | ||
| <match> | ||
| namespaces fluent | ||
| </match> | ||
| </route> | ||
| </match> | ||
| <label @7d670e99fb44ef7d003c936b2c226ac3> | ||
| <filter **> | ||
| @id FluentdConfig-fluent-fluentd-config-filter-only::fluent::filter::test-filter-grep-0 | ||
| @type grep | ||
| <regexp> | ||
| key level | ||
| pattern /error/ | ||
| </regexp> | ||
| </filter> | ||
| <match **> | ||
| @id FluentdConfig-fluent-fluentd-config-filter-only::cluster::clusteroutput::cluster-output-stdout-filter-test-0 | ||
| @type stdout | ||
| </match> | ||
| </label> |
Uh oh!
There was an error while loading. Please reload this page.