-
Notifications
You must be signed in to change notification settings - Fork 117
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
feat: kafka broker now supports all kafka topic config options #3671
feat: kafka broker now supports all kafka topic config options #3671
Conversation
Signed-off-by: Calum Murray <cmurray@redhat.com>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3671 +/- ##
============================================
+ Coverage 74.39% 74.43% +0.03%
- Complexity 845 846 +1
============================================
Files 97 97
Lines 3207 3207
Branches 273 273
============================================
+ Hits 2386 2387 +1
Misses 654 654
+ Partials 167 166 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Calum Murray <cmurray@redhat.com>
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.
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Cali0707, pierDipi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest-required |
2 similar comments
/retest-required |
/retest-required |
/cherry-pick release-1.13 |
@Cali0707: once the present PR merges, I will cherry-pick it on top of release-1.13 in a new PR and assign it to you. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/cherry-pick release-1.12 |
@Cali0707: once the present PR merges, I will cherry-pick it on top of release-1.12 in a new PR and assign it to you. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/test reconciler-tests-namespaced-broker |
/retest-required |
1 similar comment
/retest-required |
/test reconciler-tests |
/retest-required |
1 similar comment
/retest-required |
/retest-required |
3 similar comments
/retest-required |
/retest-required |
/retest-required |
/test upgrade-tests |
@Cali0707: new pull request created: #3686 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
@Cali0707: new pull request created: #3687 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
…ve-extensions#3671) * feat: kafka broker now supports all kafka topic config options Signed-off-by: Calum Murray <cmurray@redhat.com> * test: added unit tests, fixed existing tests Signed-off-by: Calum Murray <cmurray@redhat.com> --------- Signed-off-by: Calum Murray <cmurray@redhat.com>
…ve-extensions#3671) * feat: kafka broker now supports all kafka topic config options Signed-off-by: Calum Murray <cmurray@redhat.com> * test: added unit tests, fixed existing tests Signed-off-by: Calum Murray <cmurray@redhat.com> --------- Signed-off-by: Calum Murray <cmurray@redhat.com>
…ve-extensions#3671) (#1031) * feat: kafka broker now supports all kafka topic config options * test: added unit tests, fixed existing tests --------- Signed-off-by: Calum Murray <cmurray@redhat.com>
Fixes #1638
Proposed Changes
default.topic.config.
into the topic config entriesThis approach allows us to support any future changes to the kafka topic config options automatically. The user will still get a message when they provide an incorrect config option as the kafka server will reject the create topic request telling them what went wrong:
Release Note
Docs
Will open a docs PR if this approach is accepted