Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
A working minikube is needed for dev purposes

```bash
brew install minikube kubectl
brew install minikube kubectl colima
```

Install helm
Expand All @@ -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
Expand Down
Loading