[Kubernetes] Kafbat - Kafka UI(1.1.0)
[Kubernetes] Kafbat - Kafka UI(1.1.0)
Add Repo the Helm charts
1
helm repo add kafbat-ui https://kafbat.github.io/helm-charts
values 수정 - kafka 연결 세팅
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
...✂...
yamlApplicationConfig:
kafka:
clusters:
- name: yaml
bootstrapServers: kafka-cluster-broker-endpoints:9092
auth:
type: disabled
management:
health:
ldap:
enabled: false
...✂...
values 수정 - NodePort 설정
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
...✂...
yamlApplicationConfig:
kafka:
clusters:
- name: yaml
bootstrapServers: my-cluster-kafka-bootstrap.kafka.svc.cluster.local:9092
auth:
type: disabled
management:
health:
ldap:
enabled: false
service:
## @param service.type Kafka-UI service type
type: NodePort
## @param service.port Kafka-UI pod port number
port: 80
# In case of service type LoadBalancer, you can specify reserved static IP
# loadBalancerIP: 10.11.12.13
# if you want to force a specific nodePort. Must be use with service.type=NodePort
nodePort: 30092
...✂...
Install kafka UI
1
helm install -n [NAMESPACE] kafbat-ui kafbat-ui/kafka-ui -f values.yaml
kafbat helm 참고 - https://github.com/kafbat/helm-charts
1 helm install -n [NAMESPACE] kafka-ui charts/kafka-ui -f charts/kafka-ui/values.yaml
This post is licensed under CC BY 4.0 by the author.