Unknown "airbyte_version" variable on airbyte-webapp

I deployed Airbyte via Helm (v0.45.12) using an external database, and all pods start successfully, except for airbyte-webapp, which is stuck in a crashloop. The logs show

/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf
10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
20-envsubst-on-templates.sh: Running envsubst on /etc/nginx/templates/default.conf.template to /etc/nginx/conf.d/default.conf
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/04/24 20:15:56 [emerg] 1#1: unknown "airbyte_version" variable
nginx: [emerg] unknown "airbyte_version" variable

My chart value overrides are

externalDatabase:
  existingSecret: airbyte-db
  existingSecretPasswordKey: DB_PASSWORD
  host: XXXXXXX
  user: airbyte
global:
  database:
    host: XXXXXXX
    secretName: airbyte-db
    secretValue: DB_PASSWORD
postgresql:
  enabled: false
serviceAccount:
  annotations:
    iam.gke.io/gcp-service-account: XXXXXXXXXXX

Same here, but on AWS

The solution was to use a different Helm chart version (I successfully deployed 0.45.11)