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
.
The way the config
value works has changed in 0.6.0. It is now copied "as is"
to the Quickwit nodes' configurations. In particular:
- the
config.postgres
section does not support the following attributes anymore
host: ""
port: 5432
database: metastore
username: quickwit
assword: ""
Configure QW_METASTORE_URI
in extraEnvFrom
instead (see
documentation for
more details).
- the seed configuration has moved from
config
to a dedicated attribute. The changes are:- the
config.indexes
field is moved toseed.indexes
- the
config.sources
field is moved toseed.sources
- the
The jobs
and bootstrap
sections got merged in 0.7.0:
jobs.sources
section is now replaced bybootstrap.sources
jobs.indexes
section is now replaced bybootstrap.indexes