How do i use pvc with the helm charts? #5838
-
Looking at the helm charts for this kafka operator Where in the values.yaml file do i reference what persistent volume claim to use and what size??? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
The Strimzi Helm Chart is only used to install the Strimzi Operator. Once it is installed, you tell it to configure a Kafka cluster by creating the Kafka custom resource which is where you configure the storage details. Check the examples (https://github.com/strimzi/strimzi-kafka-operator/tree/main/examples/kafka) and docs for more details. |
Beta Was this translation helpful? Give feedback.
-
@encryptblockr you could also check out the Bitnami Helm charts for Kafka for inspiration, but keep in mind those are not using the Strimzi CRDs - they are just regular built-in k8s object types. |
Beta Was this translation helpful? Give feedback.
The Strimzi Helm Chart is only used to install the Strimzi Operator. Once it is installed, you tell it to configure a Kafka cluster by creating the Kafka custom resource which is where you configure the storage details. Check the examples (https://github.com/strimzi/strimzi-kafka-operator/tree/main/examples/kafka) and docs for more details.