-
|
Hello, Is below understanding is correct w.r.t strimzi operator based kafka cruise control? In the SSL connection between Kafka brokers and Cruise Control pods, Kafka brokers act as the SSL servers, and Cruise Control acts as the SSL client. Cruise Control connects to Kafka brokers over SSL/TLS to securely communicate for tasks such as monitoring, metrics gathering, and triggering rebalances. During the SSL handshake, Cruise Control (client) verifies the broker's (server) certificate to establish trust, and if mutual TLS authentication is enabled, brokers also verify Cruise Control's client certificate. This ensures encrypted, authenticated communication between them, protecting data in transit and preventing unauthorized access. Proper SSL configuration involves setting up keystores and truststores on both sides and configuring Cruise Control's client SSL settings to match the Kafka brokers' server SSL configuration. Are there any properties to give certificates or how certificates created/given? Rgds, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Questions regarding the Strimzi Kafka Operator’s specific configuration of Cruise Control would be better addressed by the Strimzi community directly. That said, I’ll do my best to answer here.
Yes, that understanding is correct. The Strimzi Kafka Operator automatically configures Cruise Control with the necessary settings, including TLS certificates and security properties, to communicate securely with the Kafka cluster.
In Strimzi, certificate management for Cruise Control is fully automated. These configurations are managed internally by Strimzi and are not exposed for manual user modification. For more details feel free check out the documentation here [1] or follow up with the Strimzi community on Slack or Strimzi GitHub discussions . [1] https://strimzi.io/docs/operators/latest/deploying#security-str |
Beta Was this translation helpful? Give feedback.
-
|
Hi @kyguy Thanks in advance |
Beta Was this translation helpful? Give feedback.
Questions regarding the Strimzi Kafka Operator’s specific configuration of Cruise Control would be better addressed by the Strimzi community directly. That said, I’ll do my best to answer here.
Yes, that understanding is correct. The Strimzi Kafka Operator automatically configures Cruise Control with the necessary settings, including TLS certificates and security properties, to communicate securely with the Kafka cluster.
In Strimzi, certificate management for Cruise Control is fully automated. These configurations are ma…