Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chart: Default airflow version to 2.9.3 #40816

Merged
merged 3 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
apiVersion: v2
name: airflow
version: 1.15.0-dev
appVersion: 2.9.2
appVersion: 2.9.3
description: The official Helm chart to deploy Apache Airflow, a platform to
programmatically author, schedule, and monitor workflows
home: https://airflow.apache.org/
Expand All @@ -47,23 +47,23 @@ annotations:
url: https://airflow.apache.org/docs/helm-chart/1.15.0/
artifacthub.io/screenshots: |
- title: DAGs View
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/dags.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/dags.png
- title: Datasets View
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/datasets.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/datasets.png
- title: Grid View
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/grid.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/grid.png
- title: Graph View
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/graph.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/graph.png
- title: Calendar View
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/calendar.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/calendar.png
- title: Variable View
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/variable_hidden.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/variable_hidden.png
- title: Gantt Chart
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/gantt.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/gantt.png
- title: Task Duration
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/duration.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/duration.png
- title: Code View
url: https://airflow.apache.org/docs/apache-airflow/2.9.2/_images/code.png
url: https://airflow.apache.org/docs/apache-airflow/2.9.3/_images/code.png
artifacthub.io/changes: |
- description: Enable MySQL KEDA support for triggerer
kind: added
Expand Down Expand Up @@ -136,7 +136,7 @@ annotations:
links:
- name: '#39115'
url: https://github.com/apache/airflow/pull/39115
- description: 'Misc: Default Airflow version to 2.9.2'
- description: 'Misc: Default Airflow version to 2.9.3'
kind: changed
links:
- name: '#40160'
Expand Down
4 changes: 2 additions & 2 deletions chart/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"defaultAirflowTag": {
"description": "Default airflow tag to deploy.",
"type": "string",
"default": "2.9.2",
"default": "2.9.3",
"x-docsSection": "Common"
},
"defaultAirflowDigest": {
Expand All @@ -93,7 +93,7 @@
"airflowVersion": {
"description": "Airflow version (Used to make some decisions based on Airflow Version being deployed).",
"type": "string",
"default": "2.9.2",
"default": "2.9.3",
"x-docsSection": "Common"
},
"securityContext": {
Expand Down
4 changes: 2 additions & 2 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ airflowHome: /opt/airflow
defaultAirflowRepository: apache/airflow

# Default airflow tag to deploy
defaultAirflowTag: "2.9.2"
defaultAirflowTag: "2.9.3"

# Default airflow digest. If specified, it takes precedence over tag
defaultAirflowDigest: ~

# Airflow version (Used to make some decisions based on Airflow Version being deployed)
airflowVersion: "2.9.2"
airflowVersion: "2.9.3"

# Images
images:
Expand Down