-
Notifications
You must be signed in to change notification settings - Fork 47
[25.3] Security report and other additions to What's New #1450
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
c15e542
Note to use security report
kbatuigas c76dfd3
Add security report to What's New
kbatuigas 3e76a2c
DOC-1195 Add topic identifiers to What's New
kbatuigas e2dd279
DOC-1763 compaction for transaction markers
kbatuigas 4778354
Compaction improvement pushed out of 25.3.1, might be in future minor
kbatuigas c117884
Add security report to production readiness checklist
kbatuigas b7d69cd
Apply suggestions from SME review
kbatuigas 7384229
DOC-1808 Tombstone removal impacted by lagging replicas
kbatuigas 20d94be
Apply suggestions from SME review
kbatuigas d83ef9e
Apply suggestions from code review
kbatuigas 632074c
Apply suggestions from doc review
kbatuigas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| .Input | ||
| [source,bash] | ||
| ---- | ||
| curl 'http://localhost:9644/v1/security/report' | ||
| ---- | ||
|
|
||
| .View output | ||
| [%collapsible] | ||
| ==== | ||
| [source,bash,role=no-copy] | ||
| ---- | ||
| { | ||
| "interfaces": { | ||
| "kafka": [ | ||
| { | ||
| "name": "test_kafka_listener", | ||
| "host": "0.0.0.0", | ||
| "port": 9092, | ||
| "advertised_host": "0.0.0.0", | ||
| "advertised_port": 9092, | ||
| "tls_enabled": false, | ||
| "mutual_tls_enabled": false, | ||
| "authentication_method": "None", | ||
| "authorization_enabled": false | ||
| } | ||
| ], | ||
| "rpc": { | ||
| "host": "0.0.0.0", | ||
| "port": 33145, | ||
| "advertised_host": "127.0.0.1", | ||
| "advertised_port": 33145, | ||
| "tls_enabled": false, | ||
| "mutual_tls_enabled": false | ||
| }, | ||
| "admin": [ | ||
| { | ||
| "name": "test_admin_listener", | ||
| "host": "0.0.0.0", | ||
| "port": 9644, | ||
| "tls_enabled": false, | ||
| "mutual_tls_enabled": false, | ||
| "authentication_methods": [], | ||
| "authorization_enabled": false | ||
| } | ||
| ] | ||
| }, | ||
| "alerts": [ | ||
| { | ||
| "affected_interface": "kafka", | ||
| "listener_name": "test_kafka_listener", | ||
| "issue": "NO_TLS", | ||
| "description": "\"kafka\" interface \"test_kafka_listener\" is not using TLS. This is insecure and not recommended." | ||
| }, | ||
| { | ||
| "affected_interface": "kafka", | ||
| "listener_name": "test_kafka_listener", | ||
| "issue": "NO_AUTHN", | ||
| "description": "\"kafka\" interface \"test_kafka_listener\" is not using authentication. This is insecure and not recommended." | ||
| }, | ||
| { | ||
| "affected_interface": "kafka", | ||
| "listener_name": "test_kafka_listener", | ||
| "issue": "NO_AUTHZ", | ||
| "description": "\"kafka\" interface \"test_kafka_listener\" is not using authorization. This is insecure and not recommended." | ||
| }, | ||
| { | ||
| "affected_interface": "rpc", | ||
| "issue": "NO_TLS", | ||
| "description": "\"rpc\" interface is not using TLS. This is insecure and not recommended." | ||
| }, | ||
| { | ||
| "affected_interface": "admin", | ||
| "listener_name": "test_admin_listener", | ||
| "issue": "NO_TLS", | ||
| "description": "\"admin\" interface \"test_admin_listener\" is not using TLS. This is insecure and not recommended." | ||
| }, | ||
| { | ||
| "affected_interface": "admin", | ||
| "listener_name": "test_admin_listener", | ||
| "issue": "NO_AUTHZ", | ||
| "description": "\"admin\" interface \"test_admin_listener\" is not using authorization. This is insecure and not recommended." | ||
| }, | ||
| { | ||
| "affected_interface": "admin", | ||
| "listener_name": "test_admin_listener", | ||
| "issue": "NO_AUTHN", | ||
| "description": "\"admin\" interface \"test_admin_listener\" is not using authentication. This is insecure and not recommended." | ||
| } | ||
| ] | ||
| } | ||
| ---- | ||
| ==== |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Not sure if this is awaiting another PR to merge or something else, but this link gives a page not found error.
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.
This link will work once redpanda-data/api-docs#35 is merged