-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Add support for kafka 3 with zookeeper support (adding images for 3.0.1, 3.1.1 and 3.2.0) #709
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
Open
lunarfs
wants to merge
33
commits into
wurstmeister:master
Choose a base branch
from
lunarfs:going_to_31
base: master
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 6 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
ac64f78
Jack12816 initial 3.0 approach
frank-vissing-se 07b56eb
Merge remote-tracking branch 'origin/master' into going_to_3
frank-vissing-se a576cbf
make test independent on how sort works
frank-vissing-se f267754
add support for kafka 3.1.0
frank-vissing-se 5d7a593
add newer and better versions
frank-vissing-se 8be81b0
make sure user removes obsolete config
frank-vissing-se ecef794
support 3.x in compose
frank-vissing-se c527cb5
fix typo
frank-vissing-se 289836a
fix missing $ (typo)
frank-vissing-se 426638f
re add BROKER_LIST, propper default KAFKA_VERSION
frank-vissing-se 823e024
make shell test happy
frank-vissing-se c3c455f
propper default
frank-vissing-se 57af850
do not require BROKER_LIST
frank-vissing-se 750ebb1
refactor removed arguments for kafka
frank-vissing-se 01fa192
start kafka with propper options
frank-vissing-se fe19311
supply entire list of bootstrap servers
frank-vissing-se 8a8daf4
various test cleanup to support removal of KAFKA_ADVERTISED_HOST_NAME…
frank-vissing-se 8914a83
fix shell check
frank-vissing-se 724866b
make MAJOR_VERSION accessible for test scripts
frank-vissing-se a97e332
propper naming of versions.sh
frank-vissing-se 8d80440
fix selection of kafka args
frank-vissing-se 13933fd
revievers comment about wrong hostname, changing to propper name kafka
frank-vissing-se 14f089d
reviewers comment about not needing seperate test setup for previous …
frank-vissing-se b3e54b0
trigger build
frank-vissing-se 704e9ab
no need to specify compose file
frank-vissing-se 0698081
totally revert this file
frank-vissing-se 58dfb8f
trigger build
frank-vissing-se 8922faa
typo in readme, we are in the test folder when executing this, this i…
frank-vissing-se 2abb7db
examine KAFKA_LISTNERS to determine the port we are runing on, also r…
frank-vissing-se 001df7d
Double quote to prevent globbing
frank-vissing-se 722fc5c
make create topics work both for KAFKA_LISTNERS and BROKER_LIST
frank-vissing-se 19d8c52
changed image
sharninder 3b705db
Merge pull request #3 from sharninder/upgrade-image
lunarfs 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| #!/bin/bash | ||
|
|
||
| CONTAINERS=$(docker ps | grep 9092 | awk '{print $1}') | ||
| BROKERS=$(for CONTAINER in ${CONTAINERS}; do docker port "$CONTAINER" 9092 | sed -e "s/0.0.0.0:/$HOST_IP:/g"; done) | ||
| # We are just interested in ipv4 addresses, so ignore ipv6 addresses | ||
| BROKERS=$(for CONTAINER in ${CONTAINERS}; do docker port "$CONTAINER" 9092 | grep '0.0.0.0' | sed -e "s/0.0.0.0:/$HOST_IP:/g"; done) | ||
| echo "${BROKERS//$'\n'/,}" |
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.