Skip to content

Commit f18d465

Browse files
committed
🔖 kafka 2.5.0
1 parent 65d7c9b commit f18d465

11 files changed

+13
-13
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MAINTAINER Enrique Garcia <engapa@gmail.com>
55
ARG KAFKA_HOME=/opt/kafka
66
ARG KAFKA_USER=kafka
77
ARG KAFKA_GROUP=kafka
8-
ARG KAFKA_VERSION="2.4.1"
8+
ARG KAFKA_VERSION="2.5.0"
99
ARG SCALA_VERSION="2.12"
1010

1111
ENV KAFKA_HOME=${KAFKA_HOME} \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ DOCKER_ORG ?= engapa
44
DOCKER_IMAGE ?= kafka
55

66
SCALA_VERSION ?= 2.12
7-
KAFKA_VERSION ?= 2.4.1
7+
KAFKA_VERSION ?= 2.5.0
88

99

1010
.PHONY: help

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To get your own image:
2020
```bash
2121
$ export KAFKA_HOME="/opt/kafka"
2222
$ export SCALA_VERSION="2.12"
23-
$ export KAFKA_VERSION="2.4.1"
23+
$ export KAFKA_VERSION="2.5.0"
2424
$ docker build --build-arg SCALA_VERSION=$SCALA_VERSION --build-arg KAFKA_VERSION=$KAFKA_VERSION --build-arg KAFKA_HOME=$KAFKA_HOME \
2525
-t your-org/kafka:${SCALA_VERSION}-${KAFKA_VERSION} .
2626
```

k8s/kafka-persistent.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ spec:
6161
containers:
6262
- name: kafka
6363
imagePullPolicy: IfNotPresent
64-
image: engapa/kafka:2.12-2.4.1
64+
image: engapa/kafka:2.12-2.5.0
6565
resources:
6666
requests:
6767
memory: 512M

k8s/kafka-zk-persistent.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ spec:
6868
containers:
6969
- name: kafka
7070
imagePullPolicy: IfNotPresent
71-
image: engapa/kafka:2.12-2.4.1
71+
image: engapa/kafka:2.12-2.5.0
7272
resources:
7373
requests:
7474
memory: 1024M

k8s/kafka-zk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ spec:
4848
containers:
4949
- name: kafka
5050
imagePullPolicy: IfNotPresent
51-
image: engapa/kafka:2.12-2.4.1
51+
image: engapa/kafka:2.12-2.5.0
5252
resources:
5353
requests:
5454
memory: 512M

openshift/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ To build and save a docker image of kafka in your private Openshift registry jus
8080

8181
```bash
8282
$ oc create -f buildconfig.yaml
83-
$ oc new-app kafka-builder -p GITHUB_REF="v2.12-2.4.1" -p IMAGE_STREAM_VERSION="2.12-2.3.0"
83+
$ oc new-app kafka-builder -p GITHUB_REF="v2.12-2.5.0" -p IMAGE_STREAM_VERSION="2.12-2.3.0"
8484
```
8585
If you want to get an image from another git commit:
8686

@@ -93,10 +93,10 @@ $ oc start-build kafka-builder --commit=master
9393
```bash
9494
$ oc get is -l component=zk [-n project]
9595
NAME DOCKER REPO TAGS UPDATED
96-
kafka 172.30.1.1:5000/test/kafka 2.12-2.4.1 1 days ago
96+
kafka 172.30.1.1:5000/test/kafka 2.12-2.5.0 1 days ago
9797
```
9898

99-
**NOTE**: If you want to use this local/private image from containers on other projects then use the "\<project\>/NAME" value as `SOURCE_IMAGE` parameter value, and use one value of "TAGS" as `KAFKA_VERSION` parameter value (e.g: test/kafka:2.12-2.4.1).
99+
**NOTE**: If you want to use this local/private image from containers on other projects then use the "\<project\>/NAME" value as `SOURCE_IMAGE` parameter value, and use one value of "TAGS" as `KAFKA_VERSION` parameter value (e.g: test/kafka:2.12-2.5.0).
100100

101101
## Topologies
102102

openshift/kafka-persistent.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ parameters:
1818
- name: KAFKA_VERSION
1919
description: Kafka Version (Scala and kafka version).
2020
required: true
21-
value: "2.12-2.4.1"
21+
value: "2.12-2.5.0"
2222
- name: SOURCE_IMAGE
2323
description: Container image source.
2424
value: kafka

openshift/kafka-zk-persistent.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ parameters:
1818
- name: KAFKA_VERSION
1919
description: Kafka Version (Scala and kafka version).
2020
required: true
21-
value: "2.12-2.4.1"
21+
value: "2.12-2.5.0"
2222
- name: SOURCE_IMAGE
2323
description: Container image source.
2424
value: kafka

openshift/kafka-zk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ parameters:
1818
- name: KAFKA_VERSION
1919
description: Kafka Version (Scala and kafka version).
2020
required: true
21-
value: "2.12-2.4.1"
21+
value: "2.12-2.5.0"
2222
- name: SOURCE_IMAGE
2323
description: Container image source.
2424
value: kafka

0 commit comments

Comments
 (0)