-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create client interface * Use new version of kafka-go * Start on implementation of broker client * Support broker addresses in command-line entrypoints * Support updating configs and running leader elections * Start adding broker client * Add create partitions * Improve tests * Fix leader election and add tests * Add tests of get api versions * Clean up tests * Update kafka-go version * Improve support for broker-based admin client * Start testing out broker-based admins * Fix case where topic does not exist * Improve support for broker-based admin client * Skip tests that aren't possible to run with older kafka versions * Add circleci tests for v2.4.1 * Fix circleci configs * Add SSL and SASL support into v1 branch (#34) * Start working on connector refactoring * Keep refactoring connectors * Switch to connectors in more places * Add more TLS support * Get TLS working * Fix cluster paths * Update README * Update name of tls enabled parameter * Update README * Update default kafka version to 2.4.1 * Update kafka-go version and fix tests * Clean up SASL implementation * Allow overriding SASL username and password * Update README and examples * Update README * Update README * Update README * Update README * Update README * Fix sensitive configs * Fix bugs * Revert change to balanced extender * Update to work with latest kafka-go changes * Fix tests * Update README restrictions * Update kafka-go for v1 (#38) * Update kafka-go version * Revert "Update kafka-go version" This reverts commit 32edf5f. * Revert "Revert "Update kafka-go version"" This reverts commit 13ac457. * Update kafka-go version * Update kafka-go version again * Also push on v1 * Fix pip in CI * Don't block on test010 for pushing images * Fix awscli installation * Fix merge conflicts with master * Fix README * Fix bugs in 'get configs' and check cluster IDs * Update all images to golang 1.16 * Fix describegroups implementation (#42) * Fix describegroups implementation * Fix vet error * Fix another signal * Update circleci config * Update kafka-go version * Update README * Update version
- Loading branch information
1 parent
3c37625
commit 4eca702
Showing
63 changed files
with
3,863 additions
and
1,947 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.14 as builder | ||
FROM golang:1.17 as builder | ||
ENV SRC github.com/segmentio/topicctl | ||
ENV CGO_ENABLED=0 | ||
|
||
|
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
Oops, something went wrong.