Skip to content

Commit

Permalink
Update to Kafka 2.0.0 (#572)
Browse files Browse the repository at this point in the history
* USe KAfka 2.0.0-RC2

* Update Dockerfile to Kafka 2.0.0

* Update CHANGELOG.md
  • Loading branch information
scholzj committed Aug 1, 2018
1 parent 3a78ce9 commit 2b40fd4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,7 @@
* Authorization
* Authentication
* User operator
* Kafka 2.0.0

## 0.5.0

Expand Down
2 changes: 1 addition & 1 deletion Makefile.docker
Expand Up @@ -16,7 +16,7 @@ all: docker_build docker_push

docker_build:
# Build Docker image ...
docker build -q --build-arg strimzi_version=$(RELEASE_VERSION) -t strimzi/$(PROJECT_NAME):latest $(DOCKERFILE_DIR)
docker build -q $(DOCKER_BUILD_ARGS) --build-arg strimzi_version=$(RELEASE_VERSION) -t strimzi/$(PROJECT_NAME):latest $(DOCKERFILE_DIR)

docker_tag:
# Tag the "latest" image we built with the given tag
Expand Down
4 changes: 2 additions & 2 deletions docker-images/kafka-base/Dockerfile
Expand Up @@ -10,11 +10,11 @@ RUN groupadd -r -g 1001 kafka && useradd -r -m -u 1001 -g kafka kafka

# Set Scala and Kafka version
ENV SCALA_VERSION=2.12
ENV KAFKA_VERSION=1.1.0
ENV KAFKA_VERSION=2.0.0
ENV JMX_EXPORTER_VERSION=0.1.0

# Set Kafka (SHA512) and Prometheus JMX exporter (SHA1) checksums
ENV KAFKA_CHECKSUM="48d1ddc71f5a5b1b25d111f792553be69be62293640a3c6af985203c6ee88c6aa78e01327066bfad3feae6b0b45d71c0cac6ebd2d08843d92269132741a3791b kafka_2.12-1.1.0.tgz"
ENV KAFKA_CHECKSUM="b28e81705e30528f1abb6766e22dfe9dae50b1e1e93330c880928ff7a08e6b38ee71cbfc96ec14369b2dfd24293938702cab422173c8e01955a9d1746ae43f98 kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz"
ENV JMX_EXPORTER_CHECKSUM="6ab370edccc2eeb3985f4c95769c26c090d0e052 jmx_prometheus_javaagent-0.1.0.jar"

# Downloading/extracting Apache Kafka
Expand Down

0 comments on commit 2b40fd4

Please sign in to comment.