Skip to content

Instantly share code, notes, and snippets.

@qudongfang
Last active August 7, 2024 09:03
Show Gist options
  • Save qudongfang/ae9db604635110265e100a48118ac7ef to your computer and use it in GitHub Desktop.
Save qudongfang/ae9db604635110265e100a48118ac7ef to your computer and use it in GitHub Desktop.
how to build istio-proxy images locally
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