-
Hi, I'm currently running strimzi operator in namespace mode and found out that I cannot expose Kafka via NodePort, because a ClusterRole with the following level of access is required:
In addition to this, I'm trying to understand why a simple creation of a service of type NodePort is not enough to expose Kafka via NodePort. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This was discussed many times in various threads. So only shortly ... for more details, please search for the previous threads here and on Slack ...
Access to nodes is required to get the node address (for node port listenrs) which is needed to configure the listener. It is also needed to get the zone in which the node is when using rack awareness
This is needed to allow the Kafka nodes query the node. As the |
Beta Was this translation helpful? Give feedback.
This was discussed many times in various threads. So only shortly ... for more details, please search for the previous threads here and on Slack ...
Access to nodes is required to get the node address (for node port listenrs) which is needed to configure the listener. It is also needed to get the zone in which the node is when using rack awareness
T…