GitHub user itzzdev09 added a comment to the discussion: Release of Helm Chart
Chart 1.22.0 is already out — it was released on 13 June 2026, which is the week the Confluence page referred to, and it is published on the official repo: ``` helm repo add apache-airflow https://airflow.apache.org helm repo update helm search repo apache-airflow/airflow ``` That returns `1.22.0` with `APP VERSION 3.2.2`, so if `helm search` is showing you something older, it's usually a stale local cache and `helm repo update` fixes it. On the version numbers in your question: there is no 1.23.0, and 2.0.0 isn't released yet. `chart/Chart.yaml` on `main` is currently `version: 2.0.0` with `appVersion: 3.3.1`, so the next chart release is numbered 2.0.0 rather than 1.23.0 — that's why searching for a 1.23.0 turns up nothing. For a date: Airflow chart releases aren't on a fixed calendar. Each one needs a release manager to cut the RC and a PMC vote to pass on the dev list, so the realistic way to track it is the [[email protected] list](https://lists.apache.org/[email protected]) (the `[VOTE]`/`[RESULT][VOTE]` threads for the Helm chart) and the [releases page](https://github.com/apache/airflow/releases?q=helm-chart) filtered to `helm-chart` tags. If what you actually need is Airflow 3.3.1 on the current chart, you don't have to wait for 2.0.0 — 1.22.0 lets you override the image: ```yaml airflowVersion: "3.3.1" defaultAirflowTag: "3.3.1" ``` The chart's `appVersion` is only the default image it ships with, not a constraint on what you can run. GitHub link: https://github.com/apache/airflow/discussions/72015#discussioncomment-18191180 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
