build: support helm-toolkit pinning

This pins the version of helm-toolkit used in the build due to
a breaking change in helm-toolkit.

Once helm 2.13.1 is released with this fix [0] we can update to use
it, and update the helm-toolkit pin to "master".

[0]: https://github.com/helm/helm/pull/5411

Change-Id: I7b9085aacc1201baa0bf2ca73f9f2127a646a7b2
This commit is contained in:
Sean Eagan 2019-03-11 15:57:09 -05:00
parent c132915dcc
commit d1fca990cf
1 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,9 @@ HELM=${1}
HELM_PIDFILE=${2}
SERVE_DIR=$(mktemp -d)
# TODO: Set this back to "master" when uplifting armada to helm 2.13.1.
HTK_STABLE_COMMIT=${HTK_COMMIT:-"d6996b8004db35acad7d51412b0b3216189e745f"}
${HELM} init --client-only
if [[ -s ${HELM_PIDFILE} ]]; then
@ -67,8 +70,9 @@ fi
{
cd "${SERVE_DIR}"
git clone --depth 1 https://git.openstack.org/openstack/openstack-helm-infra.git || true
git clone https://git.openstack.org/openstack/openstack-helm-infra.git || true
cd openstack-helm-infra
git reset --hard "${HTK_STABLE_COMMIT}"
make helm-toolkit
}