This repository was archived by the owner on Jun 5, 2025. It is now read-only.
Allow for dynamic workspace selection for muxing#1248
Closed
Conversation
This allows for the muxing endpoint to detect the `X-CodeGate-Workspace` header in requests. This will allow CodeGate to search for that workspace and use it's routing configuration explicitly. If the a workspace is requested and it does not exist, a warning will be issued and the active workspace will be defaulted to. The use case for this is for background agents to be able to select a relevant workspace and not need to disrupt the user's IDE session. Note that this is not a persistent session and merely a dynamic runtime setting. Signed-off-by: Juan Antonio Osorio <ozz@stacklok.com>
|
How do you see this work with filters? |
Contributor
Author
|
So, you could have several workspaces with different rules and filters. This would allow an agent like Stitch to choose the workspace they want to take into use; so one wouldn't disrupt the user's IDE session if they have one open. Next week I'll do a rule matcher that selects from a "label" which will simply be an HTTP header. Then from stitch we can set the header per expert. |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This allows for the muxing endpoint to detect the
X-CodeGate-Workspaceheader in requests. This will allow CodeGate to search for that
workspace and use it's routing configuration explicitly.
If the a workspace is requested and it does not exist, a warning will be
issued and the active workspace will be defaulted to.
The use case for this is for background agents to be able to select a
relevant workspace and not need to disrupt the user's IDE session.
Note that this is not a persistent session and merely a dynamic runtime
setting.
Signed-off-by: Juan Antonio Osorio ozz@stacklok.com