-
Hi all, I can see in https://github.com/strimzi/strimzi-kafka-operator/blob/main/install/cluster-operator/041-Crd-kafkaconnect.yaml that there is an "initContainer" option but it only accepts environment variables. But from the java code (https://github.com/strimzi/strimzi-kafka-operator/blob/9850f22e169fd19572ecefe7d5bde393e452fefd/cluster-operator/src/main/java/io/strimzi/operator/cluster/model/KafkaConnectCluster.java) I can't see how to pass a command ? Anybody that can give me some pointers ? Many thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Strimzi currently doesn't support custom init containers. The option in the CRD is to pass the environment variable to Strimzi's own init container used for rack awareness. TBH, I'm not sure I understand why do you need an init container to check if Schema Registry is running. |
Beta Was this translation helpful? Give feedback.
Strimzi currently doesn't support custom init containers. The option in the CRD is to pass the environment variable to Strimzi's own init container used for rack awareness. TBH, I'm not sure I understand why do you need an init container to check if Schema Registry is running.