Previously in my helm chart, I had the snippet below...
minio:
replicas: 1
persistence:
enabled: true
existingClaim: minio
#size: 10Gi
serviceType: LoadBalancer
Because I do have an existing PVC that I intend to use with Minio. It worked fine, up until a couple months ago, when GitLab changed their chart format up.
Now, it shows that I can set minio.persistence.volumeName
to use an existing volume name, but not the existing PVC.
How can I configure Minio to use an existing PVC now using the GitLab helm chart?