-
Hi - I am using EKS k8s cluster and have a persistent volume claim (EFS) to which we want to persist all files related to the queue. I configured persistenceEnabled to true, but how do I set the volume? Could you pls give me some pointers? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @mattkallo, each broker instance needs its own PV. By default, when you set |
Beta Was this translation helpful? Give feedback.
Hi @mattkallo, each broker instance needs its own PV. By default, when you set
spec.deploymentPlan.persistenceEnabled
to true, a new PVC is created for each broker instance and you can customize the size and the storageClassName, using the following properties:spec.deploymentPlan.storage.size
andspec.deploymentPlan.storage.storageClassName
.