helm chart improvements
The helm chart is missing a lot of flexibility:
- support for existing PVC outside of the helm chart and pass it as an argument. Having that solution would be useful
- init containers
- support for no volume persistence (when just looking to test quickly)
For a good example, see: https://github.com/rowanruseler/helm-charts/blob/main/charts/pgadmin4/templates/pvc.yaml
Thanks a lot for your feedback and suggestions @Fran-Rg. This is very valuable. We will try to improve the helm chart.
If you want to get your hands dirty (and of course have the capacity), you can also take a stab at it.
Another issue with current helm chart: the PVC template should NOT have version version-specific label. This prevents the helm chart from being upgraded (PVC Template is immutable)
Another issue with current helm chart: the PVC template should NOT have version version-specific label. This prevents the helm chart from being upgraded (PVC Template is immutable)
this was corrected here I believe https://github.com/restatedev/restate/pull/3594