summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2021-01-05 13:21:44 +0100
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>2021-01-05 13:31:31 +0100
commit9345ad89bb968787bef1a94cecb3d98256fde692 (patch)
treea9d2ed600bfd1c1d2db5720b8395d6c23ee751ea
parentdeac12ecb6c3fbcc65c676604142c86d06d9f897 (diff)
[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 <sylvain.desbureaux@orange.com> Change-Id: Ie358e73a498106ac3abf3731f47a1cb8f01deace
-rwxr-xr-xshell/helm-repo-init.sh4
1 files changed, 2 insertions, 2 deletions
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