Replies: 1 comment 4 replies
-
The easiest way to do it is probably to:
I'm not sure about Traefik - for Nginx you also need to have TLS enabled and configure the Ingress router for TLS passthrough. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I need to use the Traefik ingress controller instead of the NGINX Ingress Controller for the Kafka Cluster. As I was looking at the Strimzi Ingress Docs, I saw that the bootstrap and brokers can be given alias addresses like this:
Is there a way to configure this with
nodeport
orloadbalancer
to give the ingress address for a Traefik ingress controller?My ingress controller would look like this:
I also have to use port 80 on the ingress controller route because of restrictions outside my control. So, I effectively need the producer/consumer to connect to
my-cluster.mycompany.com:80
on the ingressmy-cluster-kafka-ingress
, then get passed tomy-cluster-kafka-ingress-service
to use port9094
.How can I configure the kakfa listener in strimzi to allow connections from
my-cluster.mycompany.com:80
(no TLS)?Beta Was this translation helpful? Give feedback.
All reactions