-
I have a strimzi Kafka cluster and I can see several KafkaTopics in the output of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
The Topic Operator is enabled by having the But the KafkaTopic CRD is installed independently on it with the Strimzi Cluster Operator. So even if you haven't enabled the Topic Operator, you might create the |
Beta Was this translation helpful? Give feedback.
-
@scholzj I have a followup question about this. My strimzi operator started around version 0.23.0 or so, which means originally we were using the BTO. We're now using version 0.42.0. I see this in your UTO blog post, in the section on upgrading to UTO from BTO:
Does that mean that we're already using UTO or do I still need to set I'm also wondering if I should just remove the topic-operator altogether if we don't plan on using the |
Beta Was this translation helpful? Give feedback.
The Topic Operator is enabled by having the
.spec.entityOperator.topicOperator
section in the Kafka CR. Having it there will have the Topic Operator start (the pod will be actually named...-entity-operator
and the Topic Operator is just one of its containers).But the KafkaTopic CRD is installed independently on it with the Strimzi Cluster Operator. So even if you haven't enabled the Topic Operator, you might create the
KafkaTopic
resources. But they will be ignored as there will be nobody to pick them up.