forked from strimzi/strimzi-kafka-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MO] - [refactor] -> ClientViaHttp to ClientViaExec (strimzi#1910)
* [MO] - [refactor] - ClientViaHttp to ClientViaExec * [MO] - [refactor] -> httpCall to podCall * [MO] - [refactor] -> delete whole test-client * [MO] - [system test] -> remove from refactor * [MO] - [refactor] -> renamed method * [MO] - [refactor] -> fix dependencies * [MO] - [refactor] -> fixed * [MO] - [refactor] -> fix makefile * [MO] - [refactor] -> fix messages * [MO] - [system test] -> MirrorMaker fix * [MO] - [system test] -> TopicsST fixed, KafkaST fixed, MBST clean, MMST fixed * [MO] - [system test] -> fix imports * [MO] - [system test] -> MM fix of messages * [MO] - [system test] -> fix#check * [MO] - [system test] -> fix
- Loading branch information
Showing
23 changed files
with
252 additions
and
919 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,17 +1,9 @@ | ||
FROM strimzi/kafka:latest | ||
|
||
ARG strimzi_version=1.0-SNAPSHOT | ||
ENV STRIMZI_VERSION ${strimzi_version} | ||
ENV JAVA_OPTS "-DLOG_LEVEL=info" | ||
|
||
# copy scripts for starting Kafka | ||
COPY scripts $KAFKA_HOME | ||
COPY scripts/dynamic_resources.sh /bin/dynamic_resources.sh | ||
|
||
ADD tmp/test-client-${STRIMZI_VERSION}.jar /test-client.jar | ||
|
||
USER 1001 | ||
|
||
EXPOSE 4242/tcp | ||
|
||
CMD ["/opt/kafka/launch_java.sh", "/test-client.jar"] | ||
USER 1001 |
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,19 +1,6 @@ | ||
PROJECT_NAME=test-client | ||
|
||
include ../../Makefile.os | ||
|
||
clean: | ||
rm -rf lib | ||
rm -rf tmp | ||
rm -f .*.tmp | ||
|
||
.test-client.tmp: ../../test-client/target/test-client*.jar | ||
test -d tmp || mkdir tmp | ||
$(CP) -f ../../test-client/target/test-client*.jar -d tmp | ||
touch .test-client.tmp | ||
|
||
docker_build: .test-client.tmp | ||
|
||
include ../../Makefile.docker | ||
|
||
.PHONY: build clean release |
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.