From 932f62b93e2aa2903234f89a9cedfbaba2028533 Mon Sep 17 00:00:00 2001 From: Michael Russell Date: Wed, 31 Jul 2019 17:12:24 +0200 Subject: [PATCH] [meta] Add dependency download to release script This is needed for metricbeat to download the child charts --- helpers/release.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helpers/release.py b/helpers/release.py index 811bde945..145995ff1 100644 --- a/helpers/release.py +++ b/helpers/release.py @@ -30,6 +30,9 @@ def run(cmd): for filepath in glob.iglob('*/Chart.yaml'): chart = os.path.split(os.path.dirname(filepath))[-1] + # Download dependencies + run(['helm', 'dependency', 'update', chart]) + # Package up the chart run(['helm', 'package', chart, '--destination', chart])