infinispan / infinispan-helm-charts

Apache License 2.0
14 stars 29 forks source link

Add volume without using TemplateVolume #92

Closed oburd closed 11 months ago

oburd commented 11 months ago

Hello! There is a question: I saw that you are using volume Template, but is this possible using volume which already exist ? I mean not create through volumeTemplate Thank you

ryanemerson commented 11 months ago

Not with the current chart. We use volumeClaimTemplates as it ensures that a PVC is automatically created per StatefulSet replica as the cluster is scaled up.

Why do you want to use an existing volume with the cluster pods?

oburd commented 11 months ago

@ryanemerson well we have a efs-controller which create, and i scare that it's can create a lot of incorrect volumes which i dont need. So as i correct understand i need to write a correct storageClass for creation volumes ?

ryanemerson commented 11 months ago

You can specify the storageClassName used by the PVC via the deploy.container.storage.storageClassName element.

oburd commented 11 months ago

Okay understood, thank you