blob: fb2f81029f93256bd05e6b94debe23077d079b4a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/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
cd kubernetes/ || exit
make repo
cd ..
|