-
Based on the docs - Strimzi 0.19 is supporting three ports (plain/tls/external).
I know that it's possible to do the above questions using an external port but I want to expose 2 ports with different requirements. Thanks a lot |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Re 1) The Re 2) This is a bit more complicated as it depends on your Kubernetes networking etc. In general, it should be possible without any problems in most cases. You just connect to the bootstrap address as presented in the status of the |
Beta Was this translation helpful? Give feedback.
Re 1) The
tls: true
stands for encryption. So by setting this, you do not set any authentication. So when you combine it with the authenticationtype: scram-sha-512
, you get the SCRAM authentication over TLS encrypted connection. The only thing wrong in your example is thetype: nodeport
which should not be there.Re 2) This is a bit more complicated as it depends on your Kubernetes networking etc. In general, it should be possible without any problems in most cases. You just connect to the bootstrap address as presented in the status of the
Kafka
resource. But in some cases it could be that there is some network level isolation between namespaces etc. => in that case you would need someo…