Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2018-10-05 00:24:33 +0300
committerThong Kuah <tkuah@gitlab.com>2018-10-05 01:45:11 +0300
commitcab875eeb7ec6babbab8e5e36c0a0ff4db77f73c (patch)
tree013728b602e76098cc5522f3f81df7173765f741
parent2062560ef9480d6fa07a95d9ef1a7f6fab5317f5 (diff)
Redirect IO streams to prevent hanging
https://en.wikipedia.org/wiki/Nohup#Overcoming_hanging https://gitlab.com/gitlab-org/gitlab-runner/issues/2880
-rw-r--r--lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml b/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
index 7ab814a0ed8..ed4ec7e6385 100644
--- a/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
+++ b/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
@@ -798,7 +798,7 @@ rollout 100%:
echo "Checking Tiller..."
export HELM_HOST=":44134"
- tiller -listen ${HELM_HOST} -alsologtostderr &
+ tiller -listen ${HELM_HOST} -alsologtostderr > /dev/null 2>&1 &
echo "Tiller is listening on ${HELM_HOST}"
if ! helm version --debug; then