armada/tools/helm-hapi.sh
Sean Eagan e6f294bacb Move to tiller 2.12.1
Tiller 2.12 [0] adds:

- kubernetes 1.11 support
- fix for a concurrency issue [1]

[0]: https://github.com/helm/helm/releases/tag/v2.12.0
[1]: https://github.com/helm/helm/pull/4828

Change-Id: I99ddd9d105b81177d3b7e5691afebbcca97c119f
2019-01-11 10:52:17 -06:00

14 lines
597 B
Bash
Executable File

#!/usr/bin/env bash
HELM_BRANCH='release-2.12'
git clone https://github.com/helm/helm ./helm -b $HELM_BRANCH
python -m grpc_tools.protoc -I helm/_proto --python_out=. --grpc_python_out=. helm/_proto/hapi/chart/*
python -m grpc_tools.protoc -I helm/_proto --python_out=. --grpc_python_out=. helm/_proto/hapi/services/*
python -m grpc_tools.protoc -I helm/_proto --python_out=. --grpc_python_out=. helm/_proto/hapi/release/*
python -m grpc_tools.protoc -I helm/_proto --python_out=. --grpc_python_out=. helm/_proto/hapi/version/*
find ./hapi/ -type d -exec touch {}/__init__.py \;
rm -rf ./helm