Adds api.EnvoyPath to run a custom Envoy binary - #506
Merged
Conversation
`api.EnvoyPath` and `ENVOY_PATH` allow running a custom Envoy binary,
skipping version resolution and download entirely. This is useful for
validating pre-release or feature branch builds before they are
published to the versions registry.
For example, to validate a locally built Envoy:
ENVOY_PATH=/path/to/envoy func-e run -c envoy.yaml
Or via the Go API:
func_e.Run(ctx, args, api.EnvoyPath("/path/to/envoy"))
```bash
$ ENVOY_PATH=~/oss/envoy/bazel-bin/source/exe/envoy-static func-e run -- --version
starting: /Users/codefromthecrypt/oss/envoy/bazel-bin/source/exe/envoy-static ...
/Users/codefromthecrypt/oss/envoy/bazel-bin/source/exe/envoy-static version: b03da5f87bd4117eecab5c51d4e6d6be9cccc794/1.39.0-dev/Modified/DEBUG/BoringSSL
```
Relates to tetratelabs/built-on-envoy#406
Signed-off-by: Adrian Cole <adrian@tetrate.io>
codefromthecrypt
force-pushed
the
envoy-path
branch
from
May 8, 2026 03:33
00ffdbe to
25ccdf3
Compare
Contributor
Author
|
polish here was to weave in the excellent feedback in #505 (review) without a new PR |
anuraaga
approved these changes
May 8, 2026
Co-authored-by: Anuraag (Rag) Agrawal <anuraaga@gmail.com>
codefromthecrypt
enabled auto-merge (squash)
May 8, 2026 05:01
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
api.EnvoyPathandENVOY_PATHallow running a custom Envoy binary, skipping version resolution and download entirely. This is useful for validating pre-release or feature branch builds not in the envoy-versions registry.Relates to tetratelabs/built-on-envoy#406