Draft
Conversation
sjmiller609
commented
Sep 19, 2025
sjmiller609
commented
Sep 19, 2025
rgarcia
reviewed
Sep 22, 2025
Contributor
rgarcia
left a comment
There was a problem hiding this comment.
some comments in the default and bootstrap configs would be helpful
also in the readme there should be an explanation of the new env vars that control envoy config
sjmiller609
commented
Sep 24, 2025
sjmiller609
commented
Sep 25, 2025
sjmiller609
commented
Sep 25, 2025
Contributor
|
@sjmiller609 close or merge latest from k-i-p? |
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.
Install Envoy in the Kernel browser image.
INST_NAMEandMETRO_NAMEprovidedTL;DR
Installs and configures Envoy in the browser images to act as a local proxy for dynamic traffic routing.
Why we made these changes
To create a flexible networking layer for browser instances. By routing all egress traffic through a local Envoy proxy, we can dynamically configure traffic routing based on the deployment environment (e.g., connecting to different backend services using
INST_NAMEandMETRO_NAME). This avoids hardcoding network paths in the browser image itself.What changed?
install-proxy.shscript to install Envoy via APT.supervisor-envoy.confto manage the Envoy process withsupervisord.chromium-headfulandchromium-headlessDockerfiles to run the installation.init-envoy.shscript runs on container startup to configure Envoy.INST_NAMEandMETRO_NAMEenvironment variables are present, it uses a dynamicbootstrap.yamltemplate for xDS.default.yamlconfig that sets up a direct-mode forward proxy.run-docker.sh,wrapper.sh) were updated to initialize Envoy.--proxy-server=http://127.0.0.1:3128flag to route all traffic through the local Envoy instance.README.mdwas updated with a "Proxy configuration" section explaining the new setup.Description generated by Mesa. Update settings