ingress kafka-cluster-kafka-bootstrap replace external cert #5571
-
hello everyone i have already deploy kafka cluster successfully , Currently i use configuration like picture
2 . I doubt if I can use own cert and it is possible to re deploy kafka each of component such as kafka connector kafka bridge |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You cannot use ssl-passthrough and ingress certificate at the same time. TLS passthrough means that the connection will be taken as it is and passed to the broker without decrypting it. So it will use the broker certificate. If you disable TLS passthrough and temrinate the TLS connection in the Ingress, you can use your Ingress certificate, but Nginx will figure out that there is not HTTP inside and not route the connection. So if you want to use your own certificate, you have to configure it in the broker - for example as the listener certificate. |
Beta Was this translation helpful? Give feedback.
You cannot use ssl-passthrough and ingress certificate at the same time. TLS passthrough means that the connection will be taken as it is and passed to the broker without decrypting it. So it will use the broker certificate. If you disable TLS passthrough and temrinate the TLS connection in the Ingress, you can use your Ingress certificate, but Nginx will figure out that there is not HTTP inside and not route the connection.
So if you want to use your own certificate, you have to configure it in the broker - for example as the listener certificate.