Skip to content

Commit 1b5cf86

Browse files
committed
update image tag
1 parent f311862 commit 1b5cf86

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

charts/kafka/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: kafka
33
description: Helm chart for Apache Kafka.
44
type: application
55

6-
version: 13.0.10
6+
version: 13.0.11
77
appVersion: v3.5.0
88

99
maintainers:

charts/kafka/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fullnameOverride: ""
88
image:
99
repository: sir5kong/kafka
1010
pullPolicy: IfNotPresent
11-
tag: "v3.4.0"
11+
tag: v3.5.0
1212

1313
imagePullSecrets: []
1414

@@ -37,7 +37,7 @@ broker:
3737
enabled: false
3838
replicaCount: 1
3939
terminationGracePeriodSeconds: 60
40-
heapOpts: "-Xms512m -Xmx512m"
40+
heapOpts: "-Xms1024m -Xmx1024m"
4141
commonEnvs: []
4242
extraEnvs: []
4343

@@ -54,7 +54,7 @@ broker:
5454
memory: 16Gi
5555
requests:
5656
cpu: 100m
57-
memory: 1Gi
57+
memory: 2Gi
5858

5959
## broker.readinessProbe
6060
readinessProbe:
@@ -189,7 +189,7 @@ ui:
189189
image:
190190
repository: provectuslabs/kafka-ui
191191
pullPolicy: IfNotPresent
192-
tag: v0.6.2
192+
tag: v0.7.1
193193
resources:
194194
limits:
195195
cpu: 1

examples/docker-compose-bridge.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ version: "3"
33
volumes:
44
kafka-data: {}
55

6-
### KAFKA_HOST_IP_ADDR - 主机 ip 地址
7-
## 将变量写入 .env 文件,例如: KAFKA_HOST_IP_ADDR="172.16.2.32"
6+
### KAFKA_HOST_IP_ADDR -- host ip address
7+
## Write variables to .env file,for exmaple: KAFKA_HOST_IP_ADDR="172.16.2.32"
88
###
99

10-
### 服务端口
10+
### Service port and address
1111
## Controller: 9091
1212
## Broker Internal: 9092
1313
## Broker External: 29092
1414
## bootstrap-server: ${KAFKA_HOST_IP_ADDR}:29092
15-
## 访问 web UI http://${KAFKA_HOST_IP_ADDR}:18080
15+
## Access web UI http://${KAFKA_HOST_IP_ADDR}:18080
1616
###
1717

1818
services:
@@ -31,9 +31,9 @@ services:
3131
- KAFKA_CFG_NODE_ID=1
3232
- KAFKA_CFG_CONTROLLER_QUORUM_VOTERS=1@kafka:9091
3333

34-
## 可视化管理工具 kafka-ui (可选)
34+
## Web UI for managing Kafka clusters (optional)
3535
kafka-ui:
36-
image: provectuslabs/kafka-ui:v0.6.2
36+
image: provectuslabs/kafka-ui:v0.7.1
3737
# restart: always
3838
ports:
3939
- "18080:8080"

examples/docker-compose-cluster.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ services:
6464
- KAFKA_CFG_NODE_ID=3
6565
- KAFKA_CFG_CONTROLLER_QUORUM_VOTERS=1@kafka01:9091,2@kafka02:9091,3@kafka03:9091
6666

67-
## 可视化管理工具 kafka-ui (可选)
67+
## Web UI for managing Kafka clusters (optional)
6868
kafka-ui:
69-
image: provectuslabs/kafka-ui:v0.6.2
69+
image: provectuslabs/kafka-ui:v0.7.1
7070
# restart: always
7171
ports:
7272
- "18080:8080"

examples/values-combined.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
image:
22
repository: sir5kong/kafka
33
pullPolicy: IfNotPresent
4-
tag: "v3.3.2"
4+
tag: v3.5.0
55

66
broker:
7-
## broker.combinedMode 混部模式, 将 controller 和 broker 部署在一起
7+
## broker.combinedMode, the server acts as both a broker and a controller.
88
## process.roles: "broker,controller"
99
combinedMode:
1010
enabled: true

examples/values-production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
repository: sir5kong/kafka
33
pullPolicy: IfNotPresent
4-
tag: "v3.3.2"
4+
tag: v3.5.0
55

66
controller:
77
replicaCount: 3
@@ -28,7 +28,7 @@ broker:
2828
resources:
2929
limits:
3030
cpu: 4
31-
memory: 12Gi
31+
memory: 16Gi
3232
requests:
3333
cpu: 500m
3434
memory: 6Gi

examples/values-ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ui:
33
image:
44
repository: provectuslabs/kafka-ui
55
pullPolicy: IfNotPresent
6-
tag: v0.6.2
6+
# tag: v0.7.1
77

88
ingress:
99
enabled: true

0 commit comments

Comments
 (0)