Separating library locations in the Helm Chart
I am looking to separate the library mounts in the helm chart, e.g. having
This doesn't work because Longhorn hates having duplicate volumes attached to the pod (cache-thumbs and cache-encoded-video both point to the same underlying PVC) - the idiomatic way to do this would be to create multiple mounts to the same volume, rather than duplicating the volume. It looks like there's a way to do this in the most recent common chart, but is there a way to do this with the current Helm chart?
./upload/encoded-video and ./upload/thumbs on a separate volume to reduce the amount that I pay monthly for backups - this volume would be excluded from backups. Here is my current values:This doesn't work because Longhorn hates having duplicate volumes attached to the pod (cache-thumbs and cache-encoded-video both point to the same underlying PVC) - the idiomatic way to do this would be to create multiple mounts to the same volume, rather than duplicating the volume. It looks like there's a way to do this in the most recent common chart, but is there a way to do this with the current Helm chart?