Helm must be installed to use the charts. Please refer to Helm's documentation to get started.
Once Helm has been set up correctly, add the repo as follows:
helm repo add quickwit https://helm.quickwit.io
If you had already added this repo earlier, run helm repo update
to retrieve
the latest versions of the packages. You can then run helm search repo quickwit
to see the charts.
To install the quickwit chart:
helm install my-quickwit quickwit/quickwit
To uninstall the chart:
helm delete my-quickwit
The way storage config is defined changed and you have to update your helm values to upgrade to 0.5.0.
The changes are:
- the
config.s3
andconfig.azure_blob
values are no more supported. You now have to use the storage config as defined in the docs. - the keys of secrets have changed:
s3.secret_key
is replaced bystorage.s3.secret_access_key
andazure_blob.access_key
is replace bystorage.azure.access_key
.