mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-14 20:26:53 +00:00
chore(cp-schema-registry): bump minor version (#8192)
This commit is contained in:
parent
2b94a103ac
commit
43d37ff442
@ -148,7 +148,7 @@ services:
|
||||
schema-registry:
|
||||
container_name: schema-registry
|
||||
hostname: schema-registry
|
||||
image: confluentinc/cp-schema-registry:7.2.2
|
||||
image: confluentinc/cp-schema-registry:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
|
||||
env_file: schema-registry/env/docker.env
|
||||
@ -164,7 +164,7 @@ services:
|
||||
broker:
|
||||
container_name: broker
|
||||
hostname: broker
|
||||
image: confluentinc/cp-kafka:7.2.2
|
||||
image: confluentinc/cp-kafka:7.2.5
|
||||
ports:
|
||||
- 29092:29092
|
||||
- 9092:9092
|
||||
@ -183,7 +183,7 @@ services:
|
||||
zookeeper:
|
||||
container_name: zookeeper
|
||||
hostname: zookeeper
|
||||
image: confluentinc/cp-zookeeper:7.2.2
|
||||
image: confluentinc/cp-zookeeper:7.2.5
|
||||
ports:
|
||||
- 2181:2181
|
||||
env_file: zookeeper/env/docker.env
|
||||
|
@ -125,7 +125,7 @@ services:
|
||||
schema-registry:
|
||||
container_name: schema-registry
|
||||
hostname: schema-registry
|
||||
image: confluentinc/cp-schema-registry:7.2.2
|
||||
image: confluentinc/cp-schema-registry:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
|
||||
env_file: schema-registry/env/docker.env
|
||||
@ -141,7 +141,7 @@ services:
|
||||
broker:
|
||||
container_name: broker
|
||||
hostname: broker
|
||||
image: confluentinc/cp-kafka:7.2.2
|
||||
image: confluentinc/cp-kafka:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
|
||||
env_file: broker/env/docker.env
|
||||
@ -159,7 +159,7 @@ services:
|
||||
zookeeper:
|
||||
container_name: zookeeper
|
||||
hostname: zookeeper
|
||||
image: confluentinc/cp-zookeeper:7.2.2
|
||||
image: confluentinc/cp-zookeeper:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
|
||||
env_file: zookeeper/env/docker.env
|
||||
|
@ -3,7 +3,7 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
kafka-rest-proxy:
|
||||
image: confluentinc/cp-kafka-rest:7.2.2
|
||||
image: confluentinc/cp-kafka-rest:7.2.5
|
||||
env_file: kafka-rest-proxy/env/docker.env
|
||||
hostname: kafka-rest-proxy
|
||||
container_name: kafka-rest-proxy
|
||||
|
@ -144,7 +144,7 @@ services:
|
||||
schema-registry:
|
||||
container_name: schema-registry
|
||||
hostname: schema-registry
|
||||
image: confluentinc/cp-schema-registry:7.2.2
|
||||
image: confluentinc/cp-schema-registry:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
|
||||
env_file: schema-registry/env/docker.env
|
||||
@ -160,7 +160,7 @@ services:
|
||||
broker:
|
||||
container_name: broker
|
||||
hostname: broker
|
||||
image: confluentinc/cp-kafka:7.2.2
|
||||
image: confluentinc/cp-kafka:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
|
||||
env_file: broker/env/docker.env
|
||||
@ -178,7 +178,7 @@ services:
|
||||
zookeeper:
|
||||
container_name: zookeeper
|
||||
hostname: zookeeper
|
||||
image: confluentinc/cp-zookeeper:7.2.2
|
||||
image: confluentinc/cp-zookeeper:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
|
||||
env_file: zookeeper/env/docker.env
|
||||
|
@ -23,7 +23,7 @@ services:
|
||||
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
|
||||
timeout: 5s
|
||||
hostname: broker
|
||||
image: confluentinc/cp-kafka:7.2.2
|
||||
image: confluentinc/cp-kafka:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
|
||||
volumes:
|
||||
@ -273,7 +273,7 @@ services:
|
||||
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
|
||||
timeout: 5s
|
||||
hostname: schema-registry
|
||||
image: confluentinc/cp-schema-registry:7.2.2
|
||||
image: confluentinc/cp-schema-registry:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
|
||||
zookeeper:
|
||||
@ -288,7 +288,7 @@ services:
|
||||
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
|
||||
timeout: 5s
|
||||
hostname: zookeeper
|
||||
image: confluentinc/cp-zookeeper:7.2.2
|
||||
image: confluentinc/cp-zookeeper:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
|
||||
volumes:
|
||||
|
@ -23,7 +23,7 @@ services:
|
||||
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
|
||||
timeout: 5s
|
||||
hostname: broker
|
||||
image: confluentinc/cp-kafka:7.2.2
|
||||
image: confluentinc/cp-kafka:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
|
||||
volumes:
|
||||
@ -247,7 +247,7 @@ services:
|
||||
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
|
||||
timeout: 5s
|
||||
hostname: schema-registry
|
||||
image: confluentinc/cp-schema-registry:7.2.2
|
||||
image: confluentinc/cp-schema-registry:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
|
||||
zookeeper:
|
||||
@ -262,7 +262,7 @@ services:
|
||||
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
|
||||
timeout: 5s
|
||||
hostname: zookeeper
|
||||
image: confluentinc/cp-zookeeper:7.2.2
|
||||
image: confluentinc/cp-zookeeper:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
|
||||
volumes:
|
||||
|
@ -23,7 +23,7 @@ services:
|
||||
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
|
||||
timeout: 5s
|
||||
hostname: broker
|
||||
image: confluentinc/cp-kafka:7.2.2
|
||||
image: confluentinc/cp-kafka:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
|
||||
volumes:
|
||||
@ -247,7 +247,7 @@ services:
|
||||
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
|
||||
timeout: 5s
|
||||
hostname: schema-registry
|
||||
image: confluentinc/cp-schema-registry:7.2.2
|
||||
image: confluentinc/cp-schema-registry:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
|
||||
zookeeper:
|
||||
@ -262,7 +262,7 @@ services:
|
||||
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
|
||||
timeout: 5s
|
||||
hostname: zookeeper
|
||||
image: confluentinc/cp-zookeeper:7.2.2
|
||||
image: confluentinc/cp-zookeeper:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
|
||||
volumes:
|
||||
|
@ -23,7 +23,7 @@ services:
|
||||
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
|
||||
timeout: 5s
|
||||
hostname: broker
|
||||
image: confluentinc/cp-kafka:7.2.2
|
||||
image: confluentinc/cp-kafka:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
|
||||
volumes:
|
||||
@ -273,7 +273,7 @@ services:
|
||||
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
|
||||
timeout: 5s
|
||||
hostname: schema-registry
|
||||
image: confluentinc/cp-schema-registry:7.2.2
|
||||
image: confluentinc/cp-schema-registry:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
|
||||
zookeeper:
|
||||
@ -288,7 +288,7 @@ services:
|
||||
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
|
||||
timeout: 5s
|
||||
hostname: zookeeper
|
||||
image: confluentinc/cp-zookeeper:7.2.2
|
||||
image: confluentinc/cp-zookeeper:7.2.5
|
||||
ports:
|
||||
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
|
||||
volumes:
|
||||
|
@ -4,7 +4,7 @@ import java.io.IOException;
|
||||
import java.net.ServerSocket;
|
||||
|
||||
final class Utils {
|
||||
public static final String CONFLUENT_PLATFORM_VERSION = "7.2.2";
|
||||
public static final String CONFLUENT_PLATFORM_VERSION = "7.2.5";
|
||||
|
||||
private Utils() {
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user