This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new f063a8f Update default image as ``2.1.1`` for Helm Chart (#16785)
f063a8f is described below
commit f063a8f5499bdb0a01a96dbb4cfa22e78cd36da0
Author: Kaxil Naik <[email protected]>
AuthorDate: Sat Jul 3 00:26:03 2021 +0100
Update default image as ``2.1.1`` for Helm Chart (#16785)
Change Helm chart default version to `2.1.1`
---
README.md | 14 +++++++-------
chart/Chart.yaml | 2 +-
chart/UPDATING.md | 4 ++--
chart/values.schema.json | 4 ++--
chart/values.yaml | 4 ++--
5 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/README.md b/README.md
index 0a11b7e..7a2b3cd 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ Airflow is not a streaming solution, but it is often used to
process real-time d
Apache Airflow is tested with:
-| | Main version (dev) | Stable version (2.1.0) |
+| | Main version (dev) | Stable version (2.1.1) |
| -------------------- | ------------------------- | ------------------------ |
| Python | 3.6, 3.7, 3.8, 3.9 | 3.6, 3.7, 3.8 |
| Kubernetes | 1.20, 1.19, 1.18 | 1.20, 1.19, 1.18 |
@@ -142,15 +142,15 @@ them to appropriate format and workflow that your tool
requires.
```bash
-pip install apache-airflow==2.1.0 \
- --constraint
"https://raw.githubusercontent.com/apache/airflow/constraints-2.1.0/constraints-3.7.txt"
+pip install apache-airflow==2.1.1 \
+ --constraint
"https://raw.githubusercontent.com/apache/airflow/constraints-2.1.1/constraints-3.7.txt"
```
2. Installing with extras (for example postgres,google)
```bash
-pip install apache-airflow[postgres,google]==2.1.0 \
- --constraint
"https://raw.githubusercontent.com/apache/airflow/constraints-2.1.0/constraints-3.7.txt"
+pip install apache-airflow[postgres,google]==2.1.1 \
+ --constraint
"https://raw.githubusercontent.com/apache/airflow/constraints-2.1.1/constraints-3.7.txt"
```
For information on installing provider packages check
@@ -254,7 +254,7 @@ Apache Airflow version life cycle:
| Version | Current Patch/Minor | State | First Release | Limited Support
| EOL/Terminated |
|---------|---------------------|-----------|---------------|-----------------|----------------|
-| 2 | 2.1.0 | Supported | Dec 17, 2020 | Dec 2021
| TBD |
+| 2 | 2.1.1 | Supported | Dec 17, 2020 | Dec 2021
| TBD |
| 1.10 | 1.10.15 | EOL | Aug 27, 2018 | Dec 17, 2020
| June 17, 2021 |
| 1.9 | 1.9.0 | EOL | Jan 03, 2018 | Aug 27, 2018
| Aug 27, 2018 |
| 1.8 | 1.8.2 | EOL | Mar 19, 2017 | Jan 03, 2018
| Jan 03, 2018 |
@@ -280,7 +280,7 @@ They are based on the official release schedule of Python
and Kubernetes, nicely
2. The "oldest" supported version of Python/Kubernetes is the default one.
"Default" is only meaningful
in terms of "smoke tests" in CI PRs which are run using this default
version and default reference
- image available in DockerHub. Currently ``apache/airflow:latest`` and
``apache/airflow:2.1.0`` images
+ image available in DockerHub. Currently ``apache/airflow:latest`` and
``apache/airflow:2.1.1`` images
are both Python 3.6 images, however the first MINOR/MAJOR release of
Airflow release after 23.12.2021 will
become Python 3.7 images.
diff --git a/chart/Chart.yaml b/chart/Chart.yaml
index 04013c1..120994c 100644
--- a/chart/Chart.yaml
+++ b/chart/Chart.yaml
@@ -20,7 +20,7 @@
apiVersion: v2
name: airflow
version: 1.1.0-rc1
-appVersion: 2.1.0
+appVersion: 2.1.1
description: Helm chart to deploy Apache Airflow, a platform to
programmatically author, schedule, and monitor workflows
home: https://airflow.apache.org/
diff --git a/chart/UPDATING.md b/chart/UPDATING.md
index 835cefc..f05494c 100644
--- a/chart/UPDATING.md
+++ b/chart/UPDATING.md
@@ -48,9 +48,9 @@ https://developers.google.com/style/inclusive-documentation
-->
-### Default Airflow version is updated to ``2.1.0``
+### Default Airflow version is updated to ``2.1.1``
-The default Airflow version that is installed with the Chart is now ``2.1.0``,
previously it was ``2.0.2``.
+The default Airflow version that is installed with the Chart is now ``2.1.1``,
previously it was ``2.0.2``.
### Helm 2 no longer supported
diff --git a/chart/values.schema.json b/chart/values.schema.json
index dead165..6917d2c 100644
--- a/chart/values.schema.json
+++ b/chart/values.schema.json
@@ -60,13 +60,13 @@
"defaultAirflowTag": {
"description": "Default airflow tag to deploy.",
"type": "string",
- "default": "2.1.0",
+ "default": "2.1.1",
"x-docsSection": "Common"
},
"airflowVersion": {
"description": "Airflow version (Used to make some decisions based
on Airflow Version being deployed).",
"type": "string",
- "default": "2.1.0",
+ "default": "2.1.1",
"x-docsSection": "Common"
},
"nodeSelector": {
diff --git a/chart/values.yaml b/chart/values.yaml
index 4f9db12..1cad782 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -37,10 +37,10 @@ airflowHome: /opt/airflow
defaultAirflowRepository: apache/airflow
# Default airflow tag to deploy
-defaultAirflowTag: "2.1.0"
+defaultAirflowTag: "2.1.1"
# Airflow version (Used to make some decisions based on Airflow Version being
deployed)
-airflowVersion: "2.1.0"
+airflowVersion: "2.1.1"
# Images
images: