-
Notifications
You must be signed in to change notification settings - Fork 660
Add option to add a data disk to an instance #759
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,10 @@ memory: null | |
# 🟢 Builtin default: "100GiB" | ||
disk: null | ||
|
||
# Data size | ||
# 🟢 Builtin default: "0" | ||
data: null | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "data" isn't descriptive because everything is data 😛 maybe There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, "disk" is also kind of vague. And "data" was ambiguous. Using "extra" or "additional" could work, perhaps. |
||
|
||
# Expose host directories to the guest, the mount point might be accessible from all UIDs in the guest | ||
# 🟢 Builtin default: null (Mount nothing) | ||
# 🔵 This file: Mount the home as read-only, /tmp/lima as writable | ||
|
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.
I think this needs additional documentation to explain that this is a supplemental data volume, and the parameter is the size, and can use size-related units like "GiB". Maybe the builtin default should change to "0GiB" to make this obvious?
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.
The
datadisk
also needs to be mentioned indocs/internal.md
.