Last active
August 7, 2024 09:03
-
-
Save qudongfang/ae9db604635110265e100a48118ac7ef to your computer and use it in GitHub Desktop.
how to build istio-proxy images locally
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RELEASE=1.19 | |
git clone https://github.com/istio/proxy.git | |
cd proxy | |
git checkout ${RELEASE} | |
# make your changes to the source code | |
docker run -it -w /work -v $PWD:/work gcr.io/istio-testing/build-tools-proxy:${RELEASE} bash | |
make build_envoy | |
# then you can create a customized docker image, refer to https://gist.github.com/qudongfang/ada7e66bf84f94595341687f7becc692 | |
# essentially: override the envoy binary in the upstream istio-proxy image |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment