Supporting Multiple Client CAs with Custom type in Strimzi Kafka #12541
|
Strimzi Kafka officially supports a single Client CA through the default However, when using We attempted several configurations, including:
Unfortunately, none of these approaches worked as expected. In our current working setup, we combined multiple client CA certificates into a single file and used it in the configuration. This allows clients signed by different CAs to authenticate successfully. However, this approach introduces operational challenges. Managing multiple CAs in a single file makes certificate renewal and updates error-prone and difficult to maintain. Could you please advise if there is a supported way to configure multiple custom client CAs separately (e.g., as individual files) using |
Replies: 1 comment 2 replies
|
That is not how the API works. Nor how does Kafka work. The API has one key field, so you can use for one file. Similarly, the I think you have several options:
|
Please be aware that this was always rather a hack that worked by coincidence and not by intention.
Ok, so, as I said, you should be able to use the config provider, which can load the certificates based on a matching pattern directly from the Secret. (I think that is exactly the same as what …