From 52bbcb787fb7d864fcb388a4ba7764113ce05f24 Mon Sep 17 00:00:00 2001 From: Maxim Mironenko Date: Thu, 8 Aug 2019 12:15:17 +0600 Subject: [PATCH] [stable/airflow] Airflow connections values fix (#16159) * [stable/airflow] Hotfix for `connections` default value * connections should be a list by default, to avoid error trying overwrite map with list when passing actual list with connections. See: https://github.com/helm/charts/pull/10317#pullrequestreview-194739611 Signed-off-by: Maxim Mironenko * [stable/airflow] Hotfix for `connections` default value * version bumped Signed-off-by: Maxim Mironenko --- stable/airflow/Chart.yaml | 2 +- stable/airflow/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/airflow/Chart.yaml b/stable/airflow/Chart.yaml index cac198981f..8d4bad0fae 100644 --- a/stable/airflow/Chart.yaml +++ b/stable/airflow/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 description: Airflow is a platform to programmatically author, schedule and monitor workflows name: airflow -version: 4.0.0 +version: 4.0.1 appVersion: 1.10.3 icon: https://airflow.apache.org/_images/pin_large.png home: https://airflow.apache.org/ diff --git a/stable/airflow/values.yaml b/stable/airflow/values.yaml index 899aac38dd..f1d77503a1 100644 --- a/stable/airflow/values.yaml +++ b/stable/airflow/values.yaml @@ -118,7 +118,7 @@ airflow: ## - id: my_aws ## type: aws ## extra: '{"aws_access_key_id": "**********", "aws_secret_access_key": "***", "region_name":"eu-central-1"}' - connections: {} + connections: [] ## Add airflow variables ## This should be a json string with your variables in it