xtdb

alenk 2026-02-16T05:24:42.395069Z

I'm looking for helm charts for 2.1 release, is that available? Can't find it here https://github.com/xtdb/xtdb/pkgs/container/helm-xtdb-google-cloud/versions?filters%5Bversion_type%5D=tagged

Daniel Mason 2026-02-16T14:12:54.491029Z

Hi there! The contents of the 2.0.0-SNAPSHOT Helm chart should be compatible with 2.1.0 - the name is somewhat outdated, but it spins up an edge tagged XTDB image (this is based on main, tracking 2.1 + some additional changes). You have a couple of options to get it running with 2.1.0: Option 1: Edit the chart locally Can pull the Helm chart from the repo using:

helm pull 
  --version 2.0.0-snapshot
  --untar
Can then maintain it locally and edit the files - overriding image.tag to 2.1.0 in the values.yaml file. Option 2: Use helm install with an override
helm install xtdb-google-cloud  \
  --version 2.0.0-snapshot \
  --namespace xtdb-deployment \
  --set xtdbConfig.serviceAccount=xtdb-service-account \
  --set xtdbConfig.gcpProjectId= \
  --set xtdbConfig.gcpBucket= \
  --set image.tag=2.1.0
Some further setup instructions for XTDB on Google Cloud can be found here: https://docs.xtdb.com/ops/google-cloud.html

alenk 2026-02-17T15:49:59.458979Z

Great, thank you! 🙏

🙌 1