[raycicmd] Add opt-in mount-ssh-agent support for docker plugin#460
[raycicmd] Add opt-in mount-ssh-agent support for docker plugin#460andrew-anyscale wants to merge 1 commit intomainfrom
Conversation
|
Reviews in this chain: |
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the CI/CD pipeline by integrating SSH agent forwarding into Docker plugin steps. This change facilitates secure access to external resources, such as private Git repositories, during the build process without embedding credentials directly into the build environment. The update ensures that necessary SSH credentials are automatically available to Docker containers, streamlining development workflows that rely on SSH authentication. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request enables SSH agent forwarding for all Linux-based Docker plugin steps in Buildkite by adding mount-ssh-agent: true. While the implementation is straightforward and includes a new test, I have a significant security concern about enabling this feature globally. SSH agent forwarding should ideally be used sparingly to adhere to the principle of least privilege. I've recommended making this a configurable option. Additionally, I've provided a suggestion to improve the robustness of the new test case.
raycicmd/bk_pipeline.go
Outdated
| "workdir": workDir, | ||
| "add-caps": addCaps, | ||
| "security-opts": []string{"apparmor=unconfined"}, | ||
| "mount-ssh-agent": true, |
There was a problem hiding this comment.
Hardcoding mount-ssh-agent: true enables SSH agent forwarding for all docker plugin steps. This could pose a security risk by violating the principle of least privilege, as it exposes SSH credentials to containers that may not need them. It would be more secure to make this feature opt-in. Please consider adding a mountSSHAgent flag to stepDockerPluginConfig and conditionally adding this option only when that flag is true for specific steps that require SSH access.
raycicmd/bk_pipeline_test.go
Outdated
| if got != true { | ||
| t.Errorf("makeRayDockerPlugin() mount-ssh-agent = %v, want true", got) | ||
| } |
There was a problem hiding this comment.
The current check got != true is not type-safe and can lead to confusing test failures. For example, if got was the string "true", the test would fail with a message like ... mount-ssh-agent = true, want true because of %v formatting. Using a type assertion ensures that the value is a boolean, and using %#v in the error message provides a clearer output on failure, making the test more robust.
| if got != true { | |
| t.Errorf("makeRayDockerPlugin() mount-ssh-agent = %v, want true", got) | |
| } | |
| if val, ok := got.(bool); !ok || !val { | |
| t.Errorf("makeRayDockerPlugin() mount-ssh-agent = %#v, want true", got) | |
| } |
3a7227e to
f5f3452
Compare
Add AllowMountSSHAgent to the global docker plugin config, gating whether individual steps can enable SSH agent forwarding via mount_ssh_agent. Pipelines that don't set allow_mount_ssh_agent in their config will ignore the per-step setting entirely, preserving least-privilege defaults. Topic: mount-ssh-agent Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: andrew <andrew@anyscale.com>
f5f3452 to
e58f186
Compare
Add AllowMountSSHAgent to the global docker plugin config, gating whether individual steps can enable SSH agent forwarding via mount_ssh_agent. Pipelines that don't set allow_mount_ssh_agent in their config will ignore the per-step setting entirely, preserving least-privilege defaults.
Topic: mount-ssh-agent
Co-Authored-By: Claude Opus 4.6 (1M context) noreply@anthropic.com
Signed-off-by: andrew andrew@anyscale.com