armada/tools/helm-hapi.sh
Alexis Rivera DeLa Torre aeeeb23b64 feat(armada): adding makefile
- adding makefile

Change-Id: I064d2c95ebaa9fb16656ce36c9ea36c618f9bfad
2017-11-16 19:47:04 +00:00

14 lines
602 B
Bash
Executable File

#!/usr/bin/env bash
HELM_BRANCH='release-2.7'
git clone https://github.com/kubernetes/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