Skip to content

Commit d73c262

Browse files
committed
chore: bump to v3.1.2
1 parent 3094f31 commit d73c262

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM apache/airflow:3.1.1
1+
FROM apache/airflow:3.1.2
22

33
# Install the standard providers for Airflow 2 -- can be removed when we upgrade to Airflow 3
44
RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}" apache-airflow-providers-standard

helm/cas-airflow/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: cas-airflow
33
type: application
44
version: 3.0.0 # Changing this requires updating the image tag in .github/workflows/release.yaml
5-
appVersion: 3.1.1 # The airflow version
5+
appVersion: 3.1.2 # The airflow version
66
description: Helm chart to deploy cas' flavour of airflow, compatible with OpenShift 4. This chart uses the vanilla airflow chart and adds cas' own templates and values.
77
icon: https://www.astronomer.io/static/airflowNewA.png
88
keywords:

helm/cas-airflow/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ airflow:
2626
# Will be overridden by the git commit sha
2727
defaultAirflowTag: "to_override"
2828

29-
airflowVersion: "3.1.1"
29+
airflowVersion: "3.1.2"
3030

3131
# Enable RBAC (default on most clusters these days)
3232
rbac:
@@ -131,7 +131,7 @@ airflow:
131131
timeoutSeconds: 120
132132
periodSeconds: 60
133133

134-
# createUserJob.args param uses the webserver.defaultUser values as of Airflow 3.1.1,
134+
# createUserJob.args param uses the webserver.defaultUser values as of Airflow 3.1.2,
135135
# So we need to override them here instead of in apiServer.defaultUser
136136
webserver:
137137
defaultUser:

run_local.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77
export AIRFLOW_HOME=.
88
export DYNAMIC_DAGS_PATH=./dags/dynamic
99

10-
AIRFLOW_VERSION=3.1.1
10+
AIRFLOW_VERSION=3.1.2
1111
PYTHON_VERSION="$(python --version | cut -d " " -f 2 | cut -d "." -f 1-2)"
1212
# For example: 3.6
1313
CONSTRAINT_URL="https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-${PYTHON_VERSION}.txt"

0 commit comments

Comments
 (0)