Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Update confluent version in the examples #772

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion documentation/compose/auth-context.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
SPRING_SECURITY_USER_PASSWORD: pass

kafka:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka
container_name: kafka
ports:
Expand Down
6 changes: 3 additions & 3 deletions documentation/compose/cluster-sr-auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2'
services:

kafka1:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka1
container_name: kafka1
ports:
Expand Down Expand Up @@ -31,7 +31,7 @@ services:
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'"

schemaregistry1:
image: confluentinc/cp-schema-registry:7.2.1
image: confluentinc/cp-schema-registry:7.8.0
ports:
- 18085:8085
depends_on:
Expand All @@ -55,7 +55,7 @@ services:
SCHEMA_REGISTRY_KAFKASTORE_TOPIC: _schemas

kafka-init-topics:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
volumes:
- ./data/message.json:/data/message.json
depends_on:
Expand Down
12 changes: 6 additions & 6 deletions documentation/compose/kafbat-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
DYNAMIC_CONFIG_ENABLED: 'true'

kafka0:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka0
container_name: kafka0
ports:
Expand Down Expand Up @@ -55,7 +55,7 @@ services:
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'"

kafka1:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka1
container_name: kafka1
ports:
Expand Down Expand Up @@ -83,7 +83,7 @@ services:
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'"

schemaregistry0:
image: confluentinc/cp-schema-registry:7.2.1
image: confluentinc/cp-schema-registry:7.8.0
ports:
- 8085:8085
depends_on:
Expand All @@ -99,7 +99,7 @@ services:
SCHEMA_REGISTRY_KAFKASTORE_TOPIC: _schemas

schemaregistry1:
image: confluentinc/cp-schema-registry:7.2.1
image: confluentinc/cp-schema-registry:7.8.0
ports:
- 18085:8085
depends_on:
Expand All @@ -115,7 +115,7 @@ services:
SCHEMA_REGISTRY_KAFKASTORE_TOPIC: _schemas

kafka-connect0:
image: confluentinc/cp-kafka-connect:7.2.1
image: confluentinc/cp-kafka-connect:7.8.0
ports:
- 8083:8083
depends_on:
Expand All @@ -140,7 +140,7 @@ services:
CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components"

kafka-init-topics:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
volumes:
- ./data/message.json:/data/message.json
depends_on:
Expand Down
6 changes: 3 additions & 3 deletions documentation/compose/kafka-ssl-components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ services:
- ./ssl/kafka.keystore.jks:/kafka.keystore.jks

kafka0:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka0
container_name: kafka0
ports:
Expand Down Expand Up @@ -80,7 +80,7 @@ services:
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'"

schemaregistry0:
image: confluentinc/cp-schema-registry:7.2.1
image: confluentinc/cp-schema-registry:7.8.0
depends_on:
- kafka0
environment:
Expand Down Expand Up @@ -111,7 +111,7 @@ services:
- ./ssl/kafka.keystore.jks:/kafka.keystore.jks

kafka-connect0:
image: confluentinc/cp-kafka-connect:7.2.1
image: confluentinc/cp-kafka-connect:7.8.0
ports:
- 8083:8083
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion documentation/compose/kafka-ssl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
- ./ssl/kafka.keystore.jks:/kafka.keystore.jks

kafka:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka
container_name: kafka
ports:
Expand Down
6 changes: 3 additions & 3 deletions documentation/compose/kafka-zookeeper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2'
services:

zookeeper:
image: confluentinc/cp-zookeeper:7.2.1
image: confluentinc/cp-zookeeper:7.8.0
hostname: zookeeper
container_name: zookeeper
ports:
Expand All @@ -13,7 +13,7 @@ services:
ZOOKEEPER_TICK_TIME: 2000

kafka:
image: confluentinc/cp-server:7.2.1
image: confluentinc/cp-server:7.8.0
hostname: kafka
container_name: kafka
depends_on:
Expand All @@ -36,7 +36,7 @@ services:
KAFKA_JMX_HOSTNAME: kafka

kafka-init-topics:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
volumes:
- ./data/message.json:/data/message.json
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion documentation/compose/ui-acl-with-zk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
- 2181:2181

kafka:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka
container_name: kafka
ports:
Expand Down
8 changes: 4 additions & 4 deletions documentation/compose/ui-connectors-auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
KAFKA_CLUSTERS_0_KAFKACONNECT_0_PASSWORD: admin-secret

kafka0:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka0
container_name: kafka0
ports:
Expand Down Expand Up @@ -50,7 +50,7 @@ services:
command: 'bash -c ''if [ ! -f /tmp/update_run.sh ]; then echo "ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'''

schemaregistry0:
image: confluentinc/cp-schema-registry:7.2.1
image: confluentinc/cp-schema-registry:7.8.0
ports:
- 8085:8085
depends_on:
Expand All @@ -69,7 +69,7 @@ services:
build:
context: ./kafka-connect
args:
image: confluentinc/cp-kafka-connect:7.2.1
image: confluentinc/cp-kafka-connect:7.8.0
ports:
- 8083:8083
depends_on:
Expand Down Expand Up @@ -102,7 +102,7 @@ services:
# AWS_SECRET_ACCESS_KEY: ""

kafka-init-topics:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
volumes:
- ./data/message.json:/data/message.json
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion documentation/compose/ui-jmx-secured.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
- ./jmx/clientkeystore:/jmx/clientkeystore

kafka0:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka0
container_name: kafka0
ports:
Expand Down
4 changes: 2 additions & 2 deletions documentation/compose/ui-ldap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
- 10389:10389

kafka0:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka0
container_name: kafka0
ports:
Expand Down Expand Up @@ -63,7 +63,7 @@ services:
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'"

schemaregistry0:
image: confluentinc/cp-schema-registry:7.2.1
image: confluentinc/cp-schema-registry:7.8.0
ports:
- 8085:8085
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion documentation/compose/ui-sasl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
DYNAMIC_CONFIG_ENABLED: true # not necessary for sasl auth, added for tests

kafka:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka
container_name: kafka
ports:
Expand Down
4 changes: 2 additions & 2 deletions documentation/compose/ui-serdes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ services:
- ./proto:/protofiles

kafka0:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka0
container_name: kafka0
ports:
Expand Down Expand Up @@ -97,7 +97,7 @@ services:
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'"

schemaregistry0:
image: confluentinc/cp-schema-registry:7.2.1
image: confluentinc/cp-schema-registry:7.8.0
ports:
- 8085:8085
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion documentation/compose/ui-with-jmx-exporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2'
services:

kafka0:
image: confluentinc/cp-kafka:7.2.1
image: confluentinc/cp-kafka:7.8.0
hostname: kafka0
container_name: kafka0
ports:
Expand Down
Loading