Sylvain Desbureaux | 5657eda | 2020-11-26 10:25:39 +0100 | [diff] [blame] | 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 | ||||
Sylvain Desbureaux | b92ab98 | 2021-01-04 11:03:25 +0100 | [diff] [blame] | 6 | helm init --client-only --skip-refresh |
7 | helm repo rm stable | ||||
Sylvain Desbureaux | 5657eda | 2020-11-26 10:25:39 +0100 | [diff] [blame] | 8 | cd kubernetes/ || exit |
9 | make repo | ||||
10 | cd .. |