Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- Cpu and memory limits are now configurable ([#167]).
- Stale resources are now deleted ([#174]).
- Support for Airflow 2.4.1 ([#179]).

### Changed

Expand All @@ -15,6 +16,7 @@
[#167]: https://github.com/stackabletech/airflow-operator/pull/167
[#171]: https://github.com/stackabletech/airflow-operator/pull/171
[#174]: https://github.com/stackabletech/airflow-operator/pull/174
[#179]: https://github.com/stackabletech/airflow-operator/pull/179

## [0.5.0] - 2022-09-06

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: AirflowCluster
metadata:
name: airflow
spec:
version: 2.2.5-python39-stackable0.3.0
version: 2.4.1-stackable0.4.0
statsdExporterVersion: v0.22.4
executor: CeleryExecutor
loadExamples: false
Expand Down
6 changes: 3 additions & 3 deletions docs/modules/ROOT/examples/example-pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ spec:
"bash",
"-x",
"-c",
"curl -L https://raw.githubusercontent.com/apache/airflow/2.2.5/airflow/example_dags/example_bash_operator.py \
"curl -L https://raw.githubusercontent.com/apache/airflow/2.4.1/airflow/example_dags/example_bash_operator.py \
-o ${DEST_DIR}/example_bash_operator.py && \
curl -L https://raw.githubusercontent.com/apache/airflow/2.2.5/airflow/example_dags/example_complex.py \
curl -L https://raw.githubusercontent.com/apache/airflow/2.4.1/airflow/example_dags/example_complex.py \
-o ${DEST_DIR}/example_complex.py && \
curl -L https://raw.githubusercontent.com/apache/airflow/2.2.5/airflow/example_dags/example_branch_datetime_operator.py \
curl -L https://raw.githubusercontent.com/apache/airflow/2.4.1/airflow/example_dags/example_branch_datetime_operator.py \
-o ${DEST_DIR}/example_branch_datetime_operator.py",
]
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/usage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ kind: AirflowCluster
metadata:
name: airflow-with-ldap
spec:
version: 2.2.5-python39-stackable0.3.0
version: 2.4.1-stackable0.4.0
[...]
authenticationConfig:
authenticationClass: airflow-with-ldap-ldap
Expand Down
1 change: 1 addition & 0 deletions docs/modules/ROOT/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
- 2.2.3
- 2.2.4
- 2.2.5
- 2.4.1
2 changes: 1 addition & 1 deletion docs/modules/getting_started/examples/code/airflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: AirflowCluster
metadata:
name: airflow
spec:
version: 2.2.5-python39-stackable0.3.0
version: 2.4.1-stackable0.4.0
statsdExporterVersion: v0.22.4
executor: CeleryExecutor
loadExamples: true
Expand Down
6 changes: 3 additions & 3 deletions examples/pvc-airflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ spec:
"bash",
"-x",
"-c",
"curl -L https://raw.githubusercontent.com/apache/airflow/2.2.5/airflow/example_dags/example_bash_operator.py \
"curl -L https://raw.githubusercontent.com/apache/airflow/2.4.1/airflow/example_dags/example_bash_operator.py \
-o ${DEST_DIR}/example_bash_operator.py && \
curl -L https://raw.githubusercontent.com/apache/airflow/2.2.5/airflow/example_dags/example_complex.py \
curl -L https://raw.githubusercontent.com/apache/airflow/2.4.1/airflow/example_dags/example_complex.py \
-o ${DEST_DIR}/example_complex.py && \
curl -L https://raw.githubusercontent.com/apache/airflow/2.2.5/airflow/example_dags/example_branch_datetime_operator.py \
curl -L https://raw.githubusercontent.com/apache/airflow/2.4.1/airflow/example_dags/example_branch_datetime_operator.py \
-o ${DEST_DIR}/example_branch_datetime_operator.py",
]
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-airflow-cluster-dags-cmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ kind: AirflowCluster
metadata:
name: airflow-dags-cmap
spec:
version: 2.2.5-python39-stackable0.3.0
version: 2.4.1-stackable0.4.0
statsdExporterVersion: v0.22.4
executor: CeleryExecutor
loadExamples: false
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-airflow-cluster-ldap-insecure-tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ kind: AirflowCluster
metadata:
name: airflow-insecure-tls
spec:
version: 2.2.5-python39-stackable0.3.0
version: 2.4.1-stackable0.4.0
statsdExporterVersion: v0.22.4
executor: CeleryExecutor
loadExamples: true
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-airflow-cluster-ldap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ kind: AirflowCluster
metadata:
name: airflow-with-ldap-server-veri-tls
spec:
version: 2.2.5-python39-stackable0.3.0
version: 2.4.1-stackable0.4.0
statsdExporterVersion: v0.22.4
executor: CeleryExecutor
loadExamples: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
"bash",
"-x",
"-c",
"curl -L https://raw.githubusercontent.com/apache/airflow/2.2.5/airflow/example_dags/example_trigger_target_dag.py \
"curl -L https://raw.githubusercontent.com/apache/airflow/{{ test_scenario['values']['airflow'].split('-').0 }}/airflow/example_dags/example_trigger_target_dag.py \
-o ${DEST_DIR}/example_trigger_target_dag.py",
]
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
dimensions:
- name: airflow
values:
- 2.2.3-python38-stackable0.3.0
- 2.2.4-python39-stackable0.3.0
- 2.2.5-python39-stackable0.3.0
- 2.4.1-stackable0.4.0
- name: ldap-authentication
values:
- no-tls
Expand Down