From 9e845e586e6aca2dfba77aed7b3528d5d0df5f37 Mon Sep 17 00:00:00 2001 From: Dylan Arbour Date: Tue, 18 Sep 2018 06:47:53 -0400 Subject: [PATCH] Update repositories once (#89) Instead of calling `helm repo update` for each repo, do it once at the end of the setup / init process. --- assets/common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/common.sh b/assets/common.sh index 310aef7..9ed39e6 100644 --- a/assets/common.sh +++ b/assets/common.sh @@ -142,8 +142,9 @@ setup_repos() { else helm repo add $name $url --tiller-namespace $tiller_namespace fi - helm repo update done + + helm repo update } setup_resource() {