summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDylan Griffith <dyl.griffith@gmail.com>2018-11-15 14:21:32 +0000
committerDylan Griffith <dyl.griffith@gmail.com>2018-11-16 10:57:27 +0000
commit9b1a99b03d114e88e2512c75f9711cb38b34bc0c (patch)
tree009d848349452d7f234d951614bd602e7a83474b /lib
parenta71b3f6a7c13fdc0978a1e9d0151fe15399b8b59 (diff)
downloadgitlab-ce-9b1a99b03d114e88e2512c75f9711cb38b34bc0c.tar.gz
Use helm version loop instead of sleep in ClientCommand
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/kubernetes/helm/client_command.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/kubernetes/helm/client_command.rb b/lib/gitlab/kubernetes/helm/client_command.rb
index 0ff0169b61d..bc554684fc7 100644
--- a/lib/gitlab/kubernetes/helm/client_command.rb
+++ b/lib/gitlab/kubernetes/helm/client_command.rb
@@ -14,7 +14,7 @@ module Gitlab
# This is necessary to give Tiller time to restart after upgrade.
# Ideally we'd be able to use --wait but cannot because of
# https://github.com/helm/helm/issues/4855
- 'sleep 30'
+ 'for i in $(seq 1 30); do helm version && break; sleep 1s; echo "Retrying ($i)..."; done'
end
def repository_command