From: Sylvain Desbureaux Date: Tue, 5 Jan 2021 12:21:44 +0000 (+0100) Subject: [OOM] make helm3 linting to work X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F85%2F116585%2F1;p=ci-management.git [OOM] make helm3 linting to work chartmuseum was killed by Jenkins when launched. By moving it's outputs to /dev/null, it's no longer the case. Issue-ID: OOM-1 Signed-off-by: Sylvain Desbureaux Change-Id: Ie358e73a498106ac3abf3731f47a1cb8f01deace --- diff --git a/shell/helm-repo-init.sh b/shell/helm-repo-init.sh index c3b0a36d6..9583bade7 100755 --- a/shell/helm-repo-init.sh +++ b/shell/helm-repo-init.sh @@ -3,7 +3,7 @@ set -e -o pipefail mkdir -p ".chartstorage" -sudo mount -t tmpfs -o size=128M tmpfs .chartstorage -chartmuseum --debug --port=6464 --storage="local" --storage-local-rootdir=".chartstorage" & + +chartmuseum --port=6464 --storage="local" --storage-local-rootdir=".chartstorage" &> /dev/null & helm3 plugin install https://github.com/chartmuseum/helm-push.git helm3 repo add local http://localhost:6464