Skip to content

Commit

Permalink
Merge pull request #559 from yuvipanda/dep-up-fix
Browse files Browse the repository at this point in the history
Run helm dep up for support chart
  • Loading branch information
yuvipanda authored Jul 27, 2021
2 parents b13bfde + 487cbdb commit 94cf567
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deployer/hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 94cf567

Please sign in to comment.