Replies: 1 comment
-
Hi @apolienko , from what I understand there is no standard/recommended approach on how to do this for Zookeeper PVs. Checkout the post here for more information [1]
[1] https://stackoverflow.com/questions/79181645/how-to-change-pv-storageclass-of-strimzi-kafka-cluster |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Issue with Changing ZooKeeper StorageClass in Strimzi Kafka Helm Chart
Environment
What I'm Trying to Achieve
I want to change the StorageClass used by ZooKeeper PVCs from
standard-rwo-retain
to the default StorageClass without losing data or disrupting the cluster.Steps Taken
storageClass
line fromvalues.yaml
:Current Problem
After applying these changes, I've verified that the
storageClass
specification is no longer present in the Kafka custom resource. However, the ZooKeeper pods are still using the old PVCs with the previous StorageClass. No new PVCs were created with the default StorageClass.Main Question
How can I properly perform maintenance on the ZooKeeper cluster to change the StorageClass?
Specifically, I want to achieve a rolling update that would:
What is the correct procedure to make this change safely in a production environment with a 3-node ZooKeeper cluster?
Beta Was this translation helpful? Give feedback.
All reactions