Jeremy Phelps | 08126d8 | 2018-08-07 11:08:48 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Ensure we fail the job if any steps fail |
| 3 | set -e -o pipefail |
| 4 | |
Sylvain Desbureaux | 5657eda | 2020-11-26 10:25:39 +0100 | [diff] [blame] | 5 | mkdir -p ".chartstorage" |
Sylvain Desbureaux | f0803b2 | 2020-12-17 13:45:39 +0100 | [diff] [blame] | 6 | sudo mount -t tmpfs -o size=128M tmpfs .chartstorage |
| 7 | chartmuseum --debug --port=6464 --storage="local" --storage-local-rootdir=".chartstorage" & |
Sylvain Desbureaux | 5657eda | 2020-11-26 10:25:39 +0100 | [diff] [blame] | 8 | helm3 plugin install https://github.com/chartmuseum/helm-push.git |
| 9 | helm3 repo add local http://localhost:6464 |