-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In the Docker container, the root disk is a cow_image.qcow2 image with a size that previously was hard-coded to 50GB in the container start script. Now that value can be configured (--disk parameter, "disk" entry in the "size" struct of a VM instance when using a compose file). When using a compose file that determines the size based on the "flavor", the disk size defaults are increasing exponentially: 50GB for "micro", 100GB for "tiny", etc. Because the image file is a sparse file, this usually doesn't increase actual disk usage unless the VM really writes much data.
- Loading branch information
Showing
4 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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 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 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 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
I just found that this line is causing trouble on latest
govm/govm
image. theG
is already added at https://github.com/govm-project/govm/blob/master/startvm#L35. Fixing it in a few mins.