xtdb 2026-02-16

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

Great, thank you! 🙏

🙌 1