-
Notifications
You must be signed in to change notification settings - Fork 110
feat(specs): credential sidecar isolation architecture #1599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
markturansky
wants to merge
15
commits into
main
Choose a base branch
from
credential-mcp-sidecar
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
288d275
feat(specs): credential sidecar isolation architecture
1cc2dc6
feat(control-plane): add per-credential sidecar injection
f1f070a
feat(runner): SSE sidecar transport for credential MCP servers
b018062
feat(runner): MCP-tool-only git push prompts in sidecar mode
0ab4da9
feat: credential sidecar Dockerfiles and build targets
e373777
test(control-plane): credential sidecar injection unit tests
a29f2b1
feat: credential sidecar token refresh via CP token exchange
eb027eb
chore: cleanup built artifacts and gitignore
0a96c00
fix: credential sidecar security hardening and end-to-end validation
469ca40
fix: migration ordering for role_bindings and pr-test standard OpenSh…
8ed5d4d
fix: add AMBIENT_API_TOKEN to api-server in install-standard.sh
d0ecdc6
feat: support ANTHROPIC_API_KEY in install-standard.sh
fa13c83
feat: add Vertex AI support to install-standard.sh
0e29da7
fix: make credential project_id optional in API schema
68bea15
feat: add --scope-id shorthand flag for role-binding creation
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -146,3 +146,4 @@ hack/ | |
|
|
||
| # Personal exports | ||
| *.csv | ||
| components/credential-sidecars/entrypoint/credential-entrypoint | ||
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
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
35 changes: 21 additions & 14 deletions
35
components/ambient-api-server/pkg/api/openapi/model_credential.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Declare new credential-sidecar targets as
.PHONY.The targets added at Lines 228, 230, 237, 243, and 249 are missing from
.PHONY(Lines 1-13). If same-named files appear, recipes may not run.Suggested patch
🧰 Tools
🪛 checkmake (0.3.2)
[warning] 228-228: Target "build-credential-sidecars" should be declared PHONY.
(phonydeclared)
🤖 Prompt for AI Agents
Credential sidecar build targets are currently orphaned from primary workflows.
At Line 228 you add sidecar build targets, but
build-all(Line 170),push-all(Line 299), and_kind-load-images(Line 1263) still omit these images. This meansmake kind-up LOCAL_IMAGES=trueandmake push-allcan skip sidecar images even when sidecars are required.Suggested patch
🧰 Tools
🪛 checkmake (0.3.2)
[warning] 228-228: Target "build-credential-sidecars" should be declared PHONY.
(phonydeclared)
🤖 Prompt for AI Agents