-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update pre-commit hooks * v1.8.8 * Use 1.8.8-beta1 * update sidecar triggerer args (#441) * update sidecar triggerer args * updated test cases * update vendor packages (#442) * remove rc1 for 1.8.8 --------- Co-authored-by: pgvishnuram <[email protected]> Co-authored-by: pgvishnuram <[email protected]>
- Loading branch information
1 parent
8b5e7ce
commit 9f1dad1
Showing
5 changed files
with
35 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dependencies: | ||
- name: airflow | ||
repository: https://airflow.apache.org | ||
version: 1.8.0 | ||
digest: sha256:0b82db678ce5fb5a100b315f893eb91cc9bf9fee9067074e1b16244c8b5fa295 | ||
generated: "2023-03-16T18:31:10.54017-04:00" | ||
repository: https://github.com/astronomer/airflow/releases/download/oss-helm-chart/1.11.1-astro | ||
version: 1.11.1-astro | ||
digest: sha256:6d7c55a8e643d3e50723187c70177ec8baa8610a4b27f430a28805afaaf7a05f | ||
generated: "2023-08-22T17:01:11.74743+07:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# apiVersion v2 is Helm 3 | ||
apiVersion: v2 | ||
name: airflow | ||
version: 1.8.7 | ||
version: 1.8.8 | ||
description: Helm chart to deploy the Astronomer Platform Airflow module | ||
icon: https://airflow.apache.org/docs/apache-airflow/stable/_images/pin_large.png | ||
keywords: | ||
- astronomer | ||
- airflow | ||
dependencies: | ||
- name: airflow | ||
version: 1.8.0 | ||
repository: https://airflow.apache.org | ||
version: 1.11.1-astro | ||
repository: https://github.com/astronomer/airflow/releases/download/oss-helm-chart/1.11.1-astro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from tests.chart_tests.helm_template_generator import render_chart | ||
|
||
|
||
class TestTriggerer: | ||
def test_triggerer_log_grommer_defaults(self): | ||
"""Test Triggerer Log Groomer defaults.""" | ||
docs = render_chart( | ||
values={ | ||
"airflow": {"airflowVersion": "2.4.3"}, | ||
}, | ||
show_only=["charts/airflow/templates/triggerer/triggerer-deployment.yaml"], | ||
) | ||
assert len(docs) == 1 | ||
assert ( | ||
"/usr/local/bin/clean-airflow-logs" | ||
in docs[0]["spec"]["template"]["spec"]["containers"][1]["args"] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters