Skip to content

Commit 38fccef

Browse files
authored
Docs: Remove references to arm-specific local setup (#771)
1 parent a159ef6 commit 38fccef

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

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

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +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
6-
---
71
version: '3.8'
82
name: "kafbat-ui-dev"
93

@@ -32,7 +26,7 @@ services:
3226
KAFKA_CLUSTERS_0_AUDIT_CONSOLEAUDITENABLED: 'true'
3327

3428
kafka0:
35-
image: confluentinc/cp-kafka:7.8.0.arm64
29+
image: confluentinc/cp-kafka:7.8.0
3630
user: "0:0"
3731
hostname: kafka0
3832
container_name: kafka0
@@ -60,7 +54,7 @@ services:
6054
CLUSTER_ID: 'MkU3OEVBNTcwNTJENDM2Qk'
6155

6256
schema-registry0:
63-
image: confluentinc/cp-schema-registry:7.8.0.arm64
57+
image: confluentinc/cp-schema-registry:7.8.0
6458
ports:
6559
- 8085:8085
6660
depends_on:
@@ -76,7 +70,7 @@ services:
7670
SCHEMA_REGISTRY_KAFKASTORE_TOPIC: _schemas
7771

7872
kafka-connect0:
79-
image: confluentinc/cp-kafka-connect:7.8.0.arm64
73+
image: confluentinc/cp-kafka-connect:7.8.0
8074
ports:
8175
- 8083:8083
8276
depends_on:
@@ -101,7 +95,7 @@ services:
10195
CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components,/usr/local/share/kafka/plugins,/usr/share/filestream-connectors"
10296

10397
ksqldb0:
104-
image: confluentinc/cp-ksqldb-server:7.8.0.arm64
98+
image: confluentinc/cp-ksqldb-server:7.8.0
10599
depends_on:
106100
- kafka0
107101
- kafka-connect0
@@ -119,7 +113,7 @@ services:
119113
KSQL_CACHE_MAX_BYTES_BUFFERING: 0
120114

121115
kafka-init-topics:
122-
image: confluentinc/cp-kafka:7.8.0.arm64
116+
image: confluentinc/cp-kafka:7.8.0
123117
volumes:
124118
- ../documentation/compose/data/message.json:/data/message.json
125119
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.yaml](../../.dev/dev_arm64.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)