-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
If I use the following options, does it support Loadbalancer? listeners:
#...
- name: external
port: 9094
type: loadbalancer
tls: true
authentication:
type: tls
configuration:
brokers:
- broker: 0
advertisedHost: kafka-broker-demo-0.test.com
advertisedPort: 9094
- broker: 1
advertisedHost: kafka-broker-demo-1.test.com
advertisedPort: 9094
- broker: 2
advertisedHost: kafka-broker-demo-2.test.com
advertisedPort: 9094 |
Beta Was this translation helpful? Give feedback.
-
Strimzi integrates with Kubernetes and not with your DNS. If you want to use custom DNS names, you have to set them up yourself or using other tools. The documentation (and multiple previous discussions) covers how to add additional names to the certificates ( |
Beta Was this translation helpful? Give feedback.
Strimzi integrates with Kubernetes and not with your DNS. If you want to use custom DNS names, you have to set them up yourself or using other tools. The documentation (and multiple previous discussions) covers how to add additional names to the certificates (
alternativeNames
property) or how to override advertised hostnames (advertisedHost
property). Please check there for examples.