Chore: Add debug flag to curl cmd for helm release
[ci-management.git] / shell / helm2-repo-init.sh
1 #!/bin/bash
2 # Ensure we fail the job if any steps fail
3 set -e -o pipefail
4
5 # client only init, tiller will not be installed
6 helm init --client-only --skip-refresh
7 helm repo rm stable
8 cd kubernetes/ || exit
9 make repo
10 cd ..