Skip to content

Commit 650171a

Browse files
authored
Add Kafka 2.2.0 (wurstmeister#473)
1 parent 01fbcac commit 650171a

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
# This version will be also tagged as 'latest'
99
env:
1010
global:
11-
- LATEST="2.12-2.1.1"
11+
- LATEST="2.12-2.2.0"
1212

1313
# Build recommended versions based on: http://kafka.apache.org/downloads
1414
matrix:
@@ -29,6 +29,8 @@ matrix:
2929
env: KAFKA_VERSION=2.0.1
3030
- scala: 2.12
3131
env: KAFKA_VERSION=2.1.1
32+
- scala: 2.12
33+
env: KAFKA_VERSION=2.2.0
3234

3335
install:
3436
- docker --version

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Changelog
33

44
Kafka features are not tied to a specific kafka-docker version (ideally all changes will be merged into all branches). Therefore, this changelog will track changes to the image by date.
55

6+
27-Mar-2019
7+
-----------
8+
9+
- Add support for Kafka `2.2.0`
10+
611
21-Feb-2019
712
-----------
813

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM openjdk:8u191-jre-alpine
22

3-
ARG kafka_version=2.1.1
3+
ARG kafka_version=2.2.0
44
ARG scala_version=2.12
55
ARG glibc_version=2.29-r0
66
ARG vcs_ref=unspecified

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Tags and releases
1616

1717
All versions of the image are built from the same set of scripts with only minor variations (i.e. certain features are not supported on older versions). The version format mirrors the Kafka format, `<scala version>-<kafka version>`. Initially, all images are built with the recommended version of scala documented on [http://kafka.apache.org/downloads](http://kafka.apache.org/downloads). Available tags are:
1818

19+
- `2.12-2.2.0`
1920
- `2.12-2.1.1`
2021
- `2.12-2.0.1`
2122
- `2.11-1.1.1`
@@ -32,8 +33,6 @@ Everytime the image is updated, all tags will be pushed with the latest updates.
3233
## Announcements
3334

3435
* **01-Feb-2019** - Update base image to openjdk 191 ([Release notes](https://www.oracle.com/technetwork/java/javase/8u191-relnotes-5032181.html)). Please force pull to get these latest updates - including security patches etc.
35-
* **11-Nov-2018** - Update base image to openjdk 181 ([Release notes](https://www.oracle.com/technetwork/java/javase/8u181-relnotes-4479407.html)). Please force pull to get these latest updates - including security patches etc.
36-
* **28-May-2018** - New docker image tag format - see Readme.
3736

3837
---
3938

test/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ services:
3535
image: confluentinc/cp-kafkacat:5.0.0
3636
environment:
3737
- BROKER_LIST
38-
- KAFKA_VERSION=${KAFKA_VERSION-2.1.1}
38+
- KAFKA_VERSION=${KAFKA_VERSION-2.2.0}
3939
volumes:
4040
- .:/tests
4141
working_dir: /tests

0 commit comments

Comments
 (0)