Skip to content
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

fix: set the defaults for shared_fs mount in genai correctly #9433

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions harness/determined/deploy/aws/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,7 @@ def handle_dump_master_config_template(args: argparse.Namespace) -> None:
cli.Arg(
"--genai-shared-fs-mount-path",
type=str,
default="/run/determined/workdir/shared_fs",
help="Specifies the path to mount the shared filesystem used for datasets in"
+ " GenAI. Defaults to `/run/determined/workdir/shared_fs`",
),
Expand Down
2 changes: 1 addition & 1 deletion harness/determined/deploy/aws/templates/lore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ Parameters:
GenAISharedFSMountPath:
Type: String
Description: GenAI shared file system mount path
Default: latest
Default: /run/determined/workdir/shared_fs

MountEFSId:
Type: String
Expand Down
Loading