blob: 23bcdce02696184e8c25b8130124d69caeae7b32 [file] [log] [blame]
#!/bin/bash
# Ensure we fail the job if any steps fail
set -e -o pipefail
# client only init, tiller will not be installed
helm init --client-only --skip-refresh
helm repo rm stable
cd kubernetes/ || exit
make repo
cd ..