-
Hi everyone, I am using Magda as a data catalog, and I encountered this issue: I am storing my data directly in Magda (not in an external storage), but the minio's PVC size is only 10Go by default. I think it could be nice to add the possibility to configure this parameter directly in the global values.yaml |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@bouleq Instead, you can (depends on your chart hierarchy):
magda-core:
storage-api:
minio:
persistence:
size: 123G
magda:
magda-core:
storage-api:
minio:
persistence:
size: 123G
magda-core:
storage-api:
minio:
persistence:
size: 123G If you have troubles of making values flowing through, you can use
More details can be found from here: |
Beta Was this translation helpful? Give feedback.
@bouleq
Helm allows you to pass down the values to sub chart (and sub chart's subchart) with
Therefore, you don't have to modify the storage API default value file ---
storage-api/values.yaml
file to overwrite the minio config (the document is here: https://github.com/magda-io/magda/blob/master/deploy/helm/internal-charts/storage-api/README.md).Instead, you can (depends on your chart hierarchy):
magda
chart directly, you can put the following in the values file that you supply viahelm upgrade / install
-f
switch:magda
chart as one of the depende…