Add managed lustre to a4h and a4x#5785
Conversation
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 updates the a4-highgpu-8g and a4x-highgpu-4g blueprints to utilize managed Lustre for shared storage instead of Filestore. It includes necessary configuration changes to the blueprints and updates the automated daily test scripts to handle these new dependencies while maintaining existing test coverage. Highlights
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 the 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 counterproductive. 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. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates the a4-highgpu-8g and a4x-highgpu-4g Slurm blueprints to use Managed Lustre as the default shared filesystem instead of Filestore, and updates the daily integration tests to strip out these modules during test execution. Feedback on these changes highlights that the install_managed_lustre key in the a4x blueprint's JSON block is missing double quotes, and that obsolete comments instructing users on how to enable Managed Lustre should be cleaned up.
| "allow_kernel_upgrades": false, | ||
| "monitoring_agent": "cloud-ops", | ||
| install_managed_lustre: false, | ||
| install_managed_lustre: true, |
There was a problem hiding this comment.
The key install_managed_lustre is not double-quoted, which makes the JSON block in /var/tmp/slurm_vars.json syntactically invalid. Although some parsers (like YAML parsers) might tolerate unquoted keys, it is best practice to use valid JSON syntax for .json files to ensure compatibility and consistency with other keys in the same block.
"install_managed_lustre": true,|
|
||
| # Managed-Lustre instance name. This should be unique for each deployment. | ||
| # lustre_instance_id: lustre-instance | ||
| lustre_instance_id: $(vars.deployment_name)-lustre |
|
|
||
| # Managed-Lustre instance name. This should be unique for each deployment. | ||
| # lustre_instance_id: lustre-instance | ||
| lustre_instance_id: $(vars.deployment_name)-lustre |
82cdcb0 to
646bcac
Compare
Submission Checklist
NOTE: Community submissions can take up to 2 weeks to be reviewed.
Please take the following actions before submitting this pull request.