From 722531ed1838249600396df15210a70b4d88ad8d Mon Sep 17 00:00:00 2001 From: louisdlms-octo Date: Tue, 21 Apr 2026 11:44:36 +0200 Subject: [PATCH 1/2] DOC: reordered CLI commands in howto.md --- HOWTO.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/HOWTO.md b/HOWTO.md index 4c99aac..b18989b 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -16,16 +16,17 @@ Install helm ## Start and setup Cluster -Start minikube cluster with recommended specs +Start colima with custom config ```bash -#recommended configuration to avoid freezing/timeouts -minikube start --cpus 2 --memory 7800 --disk-size 50g +colima start --cpu 4 --memory 8 ``` -(You may need to start colima with custom config) + +Start minikube cluster with recommended specs ```bash -colima start --cpu 4 --memory 8 +#recommended configuration to avoid freezing/timeouts +minikube start --cpus 2 --memory 7800 --disk-size 50g ``` Activate Ingress controller add-on From 0386427228f25ed4421fa11e36b56df788c009c0 Mon Sep 17 00:00:00 2001 From: louisdlms-octo Date: Tue, 21 Apr 2026 13:56:25 +0200 Subject: [PATCH 2/2] DOC: added colima to the howto.md brew install commands --- HOWTO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HOWTO.md b/HOWTO.md index b18989b..26336ca 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -5,7 +5,7 @@ A working minikube is needed for dev purposes ```bash - brew install minikube kubectl + brew install minikube kubectl colima ``` Install helm