datalust / helm.datalust.co

Helm charts hosted on helm.datalust.co
Apache License 2.0
10 stars 16 forks source link

Add an option to set SEQ_METASTORE environment variables #21

Closed jufa2401 closed 1 year ago

jufa2401 commented 2 years ago

In our workload we would like to use the datastore which is supported through seq's environment variables, however it does not seem to be exposed through this helm chart, specifically we're using the SEQ_METASTORE_POSTGRES_CONNECTIONSTRING.

Version: 2021.3.6800

Is it possible that this option can be exposed in the future?

nblumhardt commented 2 years ago

Thanks for the note! We should definitely make it easier/simpler to set arbitrary environment variables on the Seq container through the chart :+1:

If you're able to initialize the mounted data volume with some files, you should be able to work around this one today using an init script:

echo "connection string here" | seqsvr secret set -v metastore.postgres.connectionString --value-stdin

Let me know if it seems like this could be an option/if you need more info.

jufa2401 commented 2 years ago

Thanks, I suppose that does suffice for now for our workload. 👍