-
Hi All, My question is about how to manage the certificates in terms of java trust store when using Strimzi. I tried to do it in the docker image directly (with an entry point or cmd) or find other ways but it seems that it never works and my scripts never run. Any feedback is welcomed. I'm using Strimzi version 0.14.0 and 0.18.0 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
So, if I understand it right you want to configure the truststore in the connector? I think that depends a bit on the connector and how it accepts the certificate. You can mount the truststore using the external volumes feature: https://strimzi.io/docs/operators/latest/full/using.html#type-ExternalConfiguration-reference (not sure when we added it, but I guess it should definitely be in 0.18). But then as I said, it depends on the connector. |
Beta Was this translation helpful? Give feedback.
-
My solution utilizes Kafka Strimzi 0.39. It is independent of the connector, but it is less secure: https://github.com/rogeriomm/labtools-k8s/blob/a605556d1e1e029b005dbc7b97a81ba6a0d10535/install/kafka/connectors/Dockerfile#L129 |
Beta Was this translation helpful? Give feedback.
So, if I understand it right you want to configure the truststore in the connector? I think that depends a bit on the connector and how it accepts the certificate. You can mount the truststore using the external volumes feature: https://strimzi.io/docs/operators/latest/full/using.html#type-ExternalConfiguration-reference (not sure when we added it, but I guess it should definitely be in 0.18). But then as I said, it depends on the connector.