Ignore upstream chart repos when installing Helm

The upstream Helm chart repos have moved permanently, causing a failure
when running "make helm-serve": 'Error: error initializing: Looks like
"https://kubernetes-charts.storage.googleapis.com" is not a valid chart
repository or cannot be reached'.

This change skips the chart refresh, since the upstream charts are not
used anyway.

Change-Id: Ia55b7f48ce03d1ecf9a26181fea0ab159e99c8a5
This commit is contained in:
Phil Sphicas 2021-01-07 19:09:26 +00:00
parent 922e3b2ecf
commit f29d6df68f
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ SERVE_DIR=$(mktemp -d)
HTK_STABLE_COMMIT=${HTK_COMMIT:-"2d1fe882bb751c03ee741a6166c9c8a5fad8f926"}
${HELM} init --client-only
${HELM} init --client-only --skip-refresh
if [[ -s ${HELM_PIDFILE} ]]; then
HELM_PID=$(cat "${HELM_PIDFILE}")