Skip to content

Commit 9c08cff

Browse files
committed
config: change default disk size to 100GiB
Signed-off-by: Abiola Ibrahim <[email protected]>
1 parent 6b47e90 commit 9c08cff

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Colima can also be utilised solely as a headless virtual machine manager by spec
127127

128128
### Customizing the VM
129129

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

132132
The VM can be customized either by passing additional flags to `colima start`.
133133
e.g. `--cpu`, `--memory`, `--disk`, `--runtime`.

cmd/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Run 'colima template' to set the default configurations or 'colima start --edit'
110110
const (
111111
defaultCPU = 2
112112
defaultMemory = 2
113-
defaultDisk = 60
113+
defaultDisk = 100
114114
defaultKubernetesVersion = kubernetes.DefaultVersion
115115

116116
defaultMountTypeQEMU = "sshfs"

embedded/defaults/colima.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ cpu: 2
55
# Size of the disk in GiB to be allocated to the virtual machine.
66
# NOTE: value can only be increased after virtual machine has been created.
77
#
8-
# Default: 60
9-
disk: 60
8+
# Default: 100
9+
disk: 100
1010

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

0 commit comments

Comments
 (0)