From 3c190eb13808da5c9ae7ddf91c11d9588c0d6e51 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Mon, 4 May 2020 21:36:04 +0300 Subject: [PATCH] upgrade(confluent): Upgrade cp-stack to 5.5.0 (#465) Suggested [on the forum](https://forum.sentry.io/t/connection-to-kafka-failed-when-installing/9162/10?u=byk) and the [upgrade docs](https://kafka.apache.org/25/documentation.html#upgrade) suggest upgrading from `5.1.x` without a rolling upgrade should be fine by just upgrading the code. --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6584f6b..a59aa48 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -63,7 +63,7 @@ services: - 'sentry-postgres:/var/lib/postgresql/data' zookeeper: << : *restart_policy - image: 'confluentinc/cp-zookeeper:5.1.2' + image: 'confluentinc/cp-zookeeper:5.5.0' environment: ZOOKEEPER_CLIENT_PORT: '2181' CONFLUENT_SUPPORT_METRICS_ENABLE: 'false' @@ -77,7 +77,7 @@ services: << : *restart_policy depends_on: - zookeeper - image: 'confluentinc/cp-kafka:5.1.2' + image: 'confluentinc/cp-kafka:5.5.0' environment: KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181' KAFKA_ADVERTISED_LISTENERS: 'PLAINTEXT://kafka:9092'