aeeeb23b64
- adding makefile Change-Id: I064d2c95ebaa9fb16656ce36c9ea36c618f9bfad
14 lines
602 B
Bash
Executable File
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
|