From 5c2ac6a86b1ff4ef4657bc472bf167382643b946 Mon Sep 17 00:00:00 2001 From: Mathew Wicks Date: Mon, 10 Jan 2022 16:24:38 +1100 Subject: [PATCH] chore: release 8.5.3 (#497) Signed-off-by: Mathew Wicks --- charts/airflow/CHANGELOG.md | 18 +++++++++++++++++- charts/airflow/Chart.yaml | 4 ++-- charts/airflow/values.yaml | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/charts/airflow/CHANGELOG.md b/charts/airflow/CHANGELOG.md index 9b3e02ea..788878e1 100644 --- a/charts/airflow/CHANGELOG.md +++ b/charts/airflow/CHANGELOG.md @@ -7,13 +7,28 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html) TBD +## [8.5.3] - 2022-01-10 + +> 🟥 __Warning__ 🟥 +> +> Update to this version if you are using Kubernetes 1.20+ to prevent the scheduler's liveness probe causing a restart loop (issue:[#484](https://github.com/airflow-helm/charts/issues/484)). +> +> If you currently set `scheduler.livenessProbe.timeoutSeconds` or `pgbouncer.livenessProbe.timeoutSeconds` in your values, ensure you update them to the new default of `60`. + +### Changed +- the default `airflow.image` is now `apache/airflow:2.1.4-python3.8` + - __NOTE:__ this does not affect support for older airflow versions, see the [airflow version support matrix](https://github.com/airflow-helm/charts/tree/main/charts/airflow#airflow-version-support) + +### Fixed +- increase default `timeoutSeconds` for liveness probes ([#496](https://github.com/airflow-helm/charts/pull/496)) +- typo in `GIT_SYNC_MAX_SYNC_FAILURES` environment variable name ([#462](https://github.com/airflow-helm/charts/pull/462)) + ## [8.5.2] - 2021-08-25 > 🟥 __Warning__ 🟥 > > You must stop URL-encoding special characters in `externalDatabase.user`, the chart will now automatically do this for you.
> (For example, don't replace `@` with `%40` anymore) -> ### Changed - special characters in `externalDatabase.user` are now automatically url-encoded ([#407](https://github.com/airflow-helm/charts/pull/407)) @@ -637,6 +652,7 @@ TBD > https://github.com/helm/charts/tree/master/stable/airflow [Unreleased]: https://github.com/airflow-helm/charts/compare/airflow-8.5.2...HEAD +[8.5.3]: https://github.com/airflow-helm/charts/compare/airflow-8.5.2...airflow-8.5.3 [8.5.2]: https://github.com/airflow-helm/charts/compare/airflow-8.5.1...airflow-8.5.2 [8.5.1]: https://github.com/airflow-helm/charts/compare/airflow-8.5.0...airflow-8.5.1 [8.5.0]: https://github.com/airflow-helm/charts/compare/airflow-8.4.1...airflow-8.5.0 diff --git a/charts/airflow/Chart.yaml b/charts/airflow/Chart.yaml index efe8e8ac..11b77a29 100644 --- a/charts/airflow/Chart.yaml +++ b/charts/airflow/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 description: Airflow Helm Chart (User Community) - used to deploy Apache Airflow on Kubernetes name: airflow -version: 8.5.2 -appVersion: 2.1.2 +version: 8.5.3 +appVersion: 2.1.4 icon: https://airflow.apache.org/_images/pin_large.png home: https://github.com/airflow-helm/charts maintainers: diff --git a/charts/airflow/values.yaml b/charts/airflow/values.yaml index f74da618..ee21df30 100644 --- a/charts/airflow/values.yaml +++ b/charts/airflow/values.yaml @@ -10,7 +10,7 @@ airflow: ## image: repository: apache/airflow - tag: 2.1.2-python3.8 + tag: 2.1.4-python3.8 pullPolicy: IfNotPresent pullSecret: "" uid: 50000