36efc4828d
Update Helm chart for Armada to use Tiller version 2.16.9. depends on: https://review.opendev.org/#/c/749497/ Change-Id: I16f7a5e8e571f067154e79a5f2ceb18be7d8db2d
14 lines
592 B
Bash
Executable File
14 lines
592 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
HELM_BRANCH='v2.16.9'
|
|
|
|
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
|