You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/airflow/README.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,37 @@ A __production__ starting point for GKE on Google Cloud (CeleryExecutor) | [link
80
80
81
81
## Airflow Configs
82
82
83
+
### How to use a specific version of airflow?
84
+
<details>
85
+
<summary>Show More</summary>
86
+
<hr>
87
+
88
+
There will always be a single default version of airflow shipped with this chart, see `airflow.image.*` in [values.yaml](values.yaml) for the current one.
89
+
90
+
However, given the general nature of the chart, it is likely that other versions of airflow will work too.
91
+
92
+
For example, using airflow `2.0.1`, with python `3.6`:
93
+
```yaml
94
+
airflow:
95
+
image:
96
+
repository: apache/airflow
97
+
tag: 2.0.1-python3.6
98
+
```
99
+
100
+
For example, using airflow `1.10.15`, with python `3.8`:
0 commit comments