Skip to content

Commit fb16b04

Browse files
committed
BE: Chore: Remove references to arm-specific local setup
1 parent 2b3abd2 commit fb16b04

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

.dev/dev_arm64.yaml renamed to .dev/dev.yaml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# This is a compose file designed for arm64/Apple Silicon systems
2-
# To adapt this to x86 please find and replace ".arm64" with empty
3-
4-
# ARM64 supported images for kafka can be found here
5-
# https://hub.docker.com/r/confluentinc/cp-kafka/tags?page=1&name=arm64
61
---
72
version: '3.8'
83
name: "kafbat-ui-dev"
@@ -32,7 +27,7 @@ services:
3227
KAFKA_CLUSTERS_0_AUDIT_CONSOLEAUDITENABLED: 'true'
3328

3429
kafka0:
35-
image: confluentinc/cp-kafka:7.8.0.arm64
30+
image: confluentinc/cp-kafka:7.8.0
3631
user: "0:0"
3732
hostname: kafka0
3833
container_name: kafka0
@@ -60,7 +55,7 @@ services:
6055
CLUSTER_ID: 'MkU3OEVBNTcwNTJENDM2Qk'
6156

6257
schema-registry0:
63-
image: confluentinc/cp-schema-registry:7.8.0.arm64
58+
image: confluentinc/cp-schema-registry:7.8.0
6459
ports:
6560
- 8085:8085
6661
depends_on:
@@ -76,7 +71,7 @@ services:
7671
SCHEMA_REGISTRY_KAFKASTORE_TOPIC: _schemas
7772

7873
kafka-connect0:
79-
image: confluentinc/cp-kafka-connect:7.8.0.arm64
74+
image: confluentinc/cp-kafka-connect:7.8.0
8075
ports:
8176
- 8083:8083
8277
depends_on:
@@ -101,7 +96,7 @@ services:
10196
CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components,/usr/local/share/kafka/plugins,/usr/share/filestream-connectors"
10297

10398
ksqldb0:
104-
image: confluentinc/cp-ksqldb-server:7.8.0.arm64
99+
image: confluentinc/cp-ksqldb-server:7.8.0
105100
depends_on:
106101
- kafka0
107102
- kafka-connect0
@@ -119,7 +114,7 @@ services:
119114
KSQL_CACHE_MAX_BYTES_BUFFERING: 0
120115

121116
kafka-init-topics:
122-
image: confluentinc/cp-kafka:7.8.0.arm64
117+
image: confluentinc/cp-kafka:7.8.0
123118
volumes:
124119
- ../documentation/compose/data/message.json:/data/message.json
125120
depends_on:

documentation/compose/DOCKER_COMPOSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Descriptions of docker-compose configurations (*.yaml)
22

33
1. [kafka-ui.yaml](./kafbat-ui.yaml) - Default configuration with 2 kafka clusters with two nodes of Schema Registry, one kafka-connect and a few dummy topics.
4-
2. [kafka-ui-arm64.yaml](../../.dev/dev_arm64.yaml) - Default configuration for ARM64(Mac M1) architecture with 1 kafka cluster without zookeeper with one node of Schema Registry, one kafka-connect and a few dummy topics.
4+
2. [kafka-ui-dev.yaml](../../.dev/dev.yaml) - Default configuration with 1 kafka cluster without zookeeper with one node of Schema Registry, one kafka-connect and a few dummy topics.
55
3. [kafka-ui-ssl.yml](./kafka-ssl.yml) - Connect to Kafka via TLS/SSL
66
4. [kafka-cluster-sr-auth.yaml](./cluster-sr-auth.yaml) - Schema registry with authentication.
77
5. [kafka-ui-auth-context.yaml](./auth-context.yaml) - Basic (username/password) authentication with custom path (URL) (issue 861).

0 commit comments

Comments
 (0)