-
Notifications
You must be signed in to change notification settings - Fork 14.2k
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
KAFKA-16373: KIP-1028: Addressing Docker Official Images PR Comments for JVM, Native and Docker Official Images #16664
Open
KrishVora2912
wants to merge
27
commits into
apache:trunk
Choose a base branch
from
KrishVora2912:trunk
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 10 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
67cea41
adding doi pr changes
KrishVora2912 11521ab
3.7.0 testing with doi pr changes
KrishVora2912 4f68262
adding 3.8.0 key
KrishVora2912 2c2b29a
testing on local
KrishVora2912 dfd1f19
bringing back commented lines in workflow
KrishVora2912 fee1e30
3.7.0 DOI Dockerfile revert to original state
KrishVora2912 1de2621
adding newline at end of 3.7.0 doi dockerfile
KrishVora2912 8da6e72
using annotations in place of labels
KrishVora2912 af07079
using apache keyserver as keyserver
KrishVora2912 947ce53
making ubuntu as default keyserver
KrishVora2912 372dacb
addressing PR comments -> version_keys to version_gpg_keys
KrishVora2912 d21dff3
reverting faulty import
KrishVora2912 ab4a0bf
adding servers as server list insted of keys.apache.org due to failures
KrishVora2912 a82c1fc
changing version_gpg_keys to json file as per PR comments
KrishVora2912 1f589a5
testing pushing
KrishVora2912 f027b78
3.7.0 doi testing, will be reverted
KrishVora2912 6d8615f
Revert "3.7.0 doi testing, will be reverted"
KrishVora2912 321fd4d
Revert "testing pushing"
KrishVora2912 a63adc4
using PR comments for verification of packages
KrishVora2912 d08cf6a
Fixing few issues, changing order of keyservers
KrishVora2912 89127e0
fixing gpg url error
KrishVora2912 3d3c915
reverting to test
KrishVora2912 5c6bfc4
Merge branch 'trunk' of https://github.com/apache/kafka into trunk
KrishVora2912 53c75cb
Checking docker compose
KrishVora2912 5b54175
Trying compose v2
KrishVora2912 92ec952
Using new gpg commands for native image too
KrishVora2912 2e5a354
Adding extra \n at the end
KrishVora2912 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 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 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 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 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 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 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 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,5 @@ | ||
version_keys = { | ||
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 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 for the review @omkreddy .
|
||
'3.7.0': '7C38C2F6E7DF40E527C7C996DE0D9D12FB1360DA', | ||
'3.7.1': '4687E2BC1319B57B321D6F0E39AB5531A7FCB08E', | ||
'3.8.0': 'CF9500821E9557AEB04E026C05EEA67F87749E61' | ||
} |
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.
Can we use json file instead. I don't think we should be creating a separate python file for this
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.
I used a python file for 2 main reasons
LMK if these sound valid justifications for using a python dict as a new python file.
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.
I think we should use json if we are using a separate file. It's just a more standard way of maintaining data like this imo. Overhead would be minimal imo.
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 change has been made