Skip to content

Commit f5bb336

Browse files
authored
Fixed initial config and docker images names (#89)
1 parent cb0c166 commit f5bb336

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ Set up Kafka UI with just a couple of easy commands to visualize your Kafka data
2828
To run Kafka UI, you can use a pre-built Docker image or build it locally.
2929

3030
## Running From Docker Image
31-
The official Docker image for Kafka UI is hosted here: [hub.docker.com/r/provectus/kafka-ui](https://hub.docker.com/r/provectus/kafka-ui).
31+
The official Docker image for Kafka UI is hosted here: [hub.docker.com/r/provectuslabs/kafka-ui](https://hub.docker.com/r/provectuslabs/kafka-ui).
3232

3333
Launch Docker container in the background:
3434
```sh
3535

36-
docker run -d {}/kafka-ui-api:latest
37-
-e KAFKA_CLUSTERS_0_NAME=local
38-
-e KAFKA_CLUSTERS_0__BOOTSTRAPSERVERS=kafka0:29092
36+
docker run -d provectuslabs/kafka-ui:latest
37+
-e KAFKA_CLUSTERS_0_NAME=local
38+
-e KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=kafka:9092
3939

4040
```
4141
Then access the web UI at [http://localhost:9000](http://localhost:9000).
@@ -143,12 +143,12 @@ For example, if you want to use an environment variable to set the `name` parame
143143
144144
|Name |Description
145145
|-----------------------|-------------------------------
146-
|`KAFKA_CLUSTERS_2_NAME` | Cluster name
147-
|`KAFKA_CLUSTERS_2_BOOTSTRAPSERVERS` |Address where to connect
148-
|`KAFKA_CLUSTERS_2_ZOOKEEPER` | Zookeper service address
149-
|`KAFKA_CLUSTERS_2_SCHEMAREGISTRY` |SchemaRegistry's address
150-
|`KAFKA_CLUSTERS_2_SCHEMANAMETEMPLATE` |How keys are saved to schemaRegistry
151-
|`KAFKA_CLUSTERS_2_JMXPORT` |Open jmxPosrts of a broker
146+
|`KAFKA_CLUSTERS_0_NAME` | Cluster name
147+
|`KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS` |Address where to connect
148+
|`KAFKA_CLUSTERS_0_ZOOKEEPER` | Zookeper service address
149+
|`KAFKA_CLUSTERS_0_SCHEMAREGISTRY` |SchemaRegistry's address
150+
|`KAFKA_CLUSTERS_0_SCHEMANAMETEMPLATE` |How keys are saved to schemaRegistry
151+
|`KAFKA_CLUSTERS_0_JMXPORT` |Open jmxPosrts of a broker
152152
153153
154154

docker/kafka-ui.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ version: '2'
33
services:
44

55
kafka-ui:
6-
container_name: kafka-ui-api
7-
image: kafka-ui-api:latest
6+
container_name: kafka-ui
7+
image: kafka-ui:latest
88
ports:
99
- 8080:8080
1010
depends_on:

kafka-ui-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
</goals>
238238
<configuration>
239239
<tag>${git.revision}</tag>
240-
<repository>${project.artifactId}</repository>
240+
<repository>kafka-ui</repository>
241241
<buildArgs>
242242
<JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
243243
<JAR_NAME>${project.artifactId}.jar</JAR_NAME>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
kafka:
2+
admin-client-timeout: 5000
3+
zookeeper:
4+
connection-timeout: 1000
5+
spring:
6+
jmx:
7+
enabled: true
8+
auth:
9+
enabled: false

0 commit comments

Comments
 (0)