From 487cbdb0f0b7d2758f68b2e7a551c69e3a3e362b Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Tue, 27 Jul 2021 18:25:24 +0530 Subject: [PATCH] Run helm dep up for support chart GH Actions fails otherwise: https://github.com/2i2c-org/pilot-hubs/runs/3171244245 --- deployer/hub.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deployer/hub.py b/deployer/hub.py index 871df40f58..8770119d22 100644 --- a/deployer/hub.py +++ b/deployer/hub.py @@ -103,7 +103,10 @@ def deploy_support(self): ]) print("Done!") - print("Support charts...") + print("Provisioning support charts...") + subprocess.check_call([ + 'helm', 'dep', 'up', 'support' + ]) support_dir = Path(__file__).parent.parent / 'support' support_secrets_file = support_dir / 'secrets.yaml'