Skip to content

Commit

Permalink
config: change default disk size to 100GiB
Browse files Browse the repository at this point in the history
Signed-off-by: Abiola Ibrahim <[email protected]>
  • Loading branch information
abiosoft committed Nov 7, 2024
1 parent 6b47e90 commit 9c08cff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Colima can also be utilised solely as a headless virtual machine manager by spec

### Customizing the VM

The default VM created by Colima has 2 CPUs, 2GiB memory and 60GiB storage.
The default VM created by Colima has 2 CPUs, 2GiB memory and 100GiB storage.

The VM can be customized either by passing additional flags to `colima start`.
e.g. `--cpu`, `--memory`, `--disk`, `--runtime`.
Expand Down
2 changes: 1 addition & 1 deletion cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Run 'colima template' to set the default configurations or 'colima start --edit'
const (
defaultCPU = 2
defaultMemory = 2
defaultDisk = 60
defaultDisk = 100
defaultKubernetesVersion = kubernetes.DefaultVersion

defaultMountTypeQEMU = "sshfs"
Expand Down
4 changes: 2 additions & 2 deletions embedded/defaults/colima.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ cpu: 2
# Size of the disk in GiB to be allocated to the virtual machine.
# NOTE: value can only be increased after virtual machine has been created.
#
# Default: 60
disk: 60
# Default: 100
disk: 100

# Size of the memory in GiB to be allocated to the virtual machine.
# Default: 2
Expand Down

0 comments on commit 9c08cff

Please sign in to comment.