From 9c08cff339f087c0600d9d56af7b5fbcfe02e287 Mon Sep 17 00:00:00 2001 From: Abiola Ibrahim Date: Thu, 7 Nov 2024 14:15:58 +0000 Subject: [PATCH] config: change default disk size to 100GiB Signed-off-by: Abiola Ibrahim --- README.md | 2 +- cmd/start.go | 2 +- embedded/defaults/colima.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eb5ad1c9..6926b2cf 100644 --- a/README.md +++ b/README.md @@ -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`. diff --git a/cmd/start.go b/cmd/start.go index 66f48c62..0f2a6de9 100644 --- a/cmd/start.go +++ b/cmd/start.go @@ -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" diff --git a/embedded/defaults/colima.yaml b/embedded/defaults/colima.yaml index 4b9db906..fec14980 100644 --- a/embedded/defaults/colima.yaml +++ b/embedded/defaults/colima.yaml @@ -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