-
Hi Community! I would appreciate your help. I'm currently in the process of migrating from Zookeeper to KRaft mode using the upgrade guide in the docs, but the process seems to be stuck at step 5 where the metadata state should be updated. Current Setup
Steps I've performed
Current State
Two Kafka Nodepools:
3 running Zookeeper, 3 running
Problem
This happens over and over.
Pods matching this selector:
Question CRDs
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Some thoughts ...
|
Beta Was this translation helpful? Give feedback.
I was able to find the culprit while trying to remove the replicas and storage fields from the Kafka CR like you suggested in your initial answer. The update was rejected because
This made me wonder if perhaps my CRDs are out of date, as the cluster has been running for about 2 years now with automatic updates applied by the renovate bot.
After I updated the CRDs with the command
kubectl apply -f https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.45.0/strimzi-crds-0.45.0.yaml
, the migration continued successfully to the stateKRaftPostMigration
.…