-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
442 additions
and
1,965 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
CP_VERSION=7.6.1 | ||
CONFLUENT_VERSION=7.6.1 | ||
CLUSTER_ID=bgwoWzvSSlKmk2ysynPDNg |
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,43 @@ | ||
FROM ubuntu:24.04 | ||
|
||
ARG CONFLUENT_VERSION | ||
WORKDIR /kafka-sandbox | ||
|
||
ENV GRADLE_VERSION "8.8" | ||
ENV GRADLE_HOME "/opt/gradle" | ||
ENV GRADLE_BIN "${GRADLE_HOME}/bin" | ||
ENV CONFLUENT_VERSION "$CONFLUENT_VERSION" | ||
ENV CONFLUENT_HOME "/opt/confluent" | ||
ENV CONFLUENT_BIN "${CONFLUENT_HOME}/bin" | ||
ENV PATH "${PATH}:${CONFLUENT_BIN}:${GRADLE_BIN}:/root/.local/bin" | ||
ENV COLORTERM "truecolor" | ||
ENV TERM "xterm-256color" | ||
|
||
RUN apt update \ | ||
&& apt install -y \ | ||
wget \ | ||
curl \ | ||
vim \ | ||
unzip \ | ||
kcat \ | ||
openjdk-17-jdk-headless \ | ||
jq \ | ||
httpie \ | ||
postgresql-client \ | ||
mysql-client \ | ||
mosquitto-clients \ | ||
python-is-python3 \ | ||
python3 \ | ||
pipx \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& pipx install kaskade | ||
|
||
RUN wget -q "http://packages.confluent.io/archive/$(echo "${CONFLUENT_VERSION}" | cut -c 1-3)/confluent-community-${CONFLUENT_VERSION}.zip" -O /tmp/confluent.zip \ | ||
&& unzip /tmp/confluent.zip -d /tmp \ | ||
&& mv "/tmp/confluent-${CONFLUENT_VERSION}" "${CONFLUENT_HOME}" \ | ||
&& rm /tmp/confluent.zip | ||
|
||
RUN wget -q "https://services.gradle.org/distributions/gradle-8.8-bin.zip" -O /tmp/gradle.zip \ | ||
&& unzip /tmp/gradle.zip -d /tmp \ | ||
&& mv "/tmp/gradle-${GRADLE_VERSION}" "${GRADLE_HOME}" \ | ||
&& rm /tmp/gradle.zip |
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,2 +1,3 @@ | ||
confluentVersion=7.6.1 | ||
kafkaVersion=3.6.1 | ||
kafkaVersion=3.6.1 | ||
lombokVersion=1.18.26 |
Binary file not shown.
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,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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.