Skip to main content
This page shows how to override the default engine and metadata image tags. By default, the chart pulls engine and metadata from ghcr.io/firebolt-db/{engine,metadata} based on the appVersion in Chart.yaml.

Track ‘dev’ images

To follow current-of-mainline builds, you can use the dev tag.
engineSpec:
  image:
    tag: dev
metadata:
  image:
    tag: dev
The dev tag is mutable. Two installs minutes apart can pull different content. Pin the tag to a specific version for reproducible installs.

Use a specific build

You can override the tag per component, but you must keep the version used for the Engine and used for the Metadata Service in lockstep. You can choose the smaller release- versions or use the debug- prefix which contains debug symbols.
engineSpec:
  image:
    tag: release-4.32.0-pre.0.20260609145613.22a1ea4abadb
metadata:
  image:
    tag: release-4.32.0-pre.0.20260609145613.22a1ea4abadb

Lockstep

Engine and metadata ship from the same build pipeline and are not version-tolerant of each other. The chart does not enforce lockstep. Mismatched tags surface as a metadata-RPC failure at engine startup.