Skip to content

Commit

Permalink
NO-ISSUE: Improve Minikube setup (#606)
Browse files Browse the repository at this point in the history
Improve Minikube setup
  • Loading branch information
tomasdavidorg committed Mar 25, 2024
1 parent 3f23ace commit e935651
Showing 1 changed file with 22 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,36 @@ Please note, that if the knative quickstart procedure is not used, you need to i
.To startup the selected cluster without quickstart, use the following command:
[tabs]
====
Minikube::
Minikube with Docker::
+
--
.Configure and startup minikube
.Configure and startup minikube with Docker
[source,shell]
----
# Set a driver and container runtime
minikube config set driver docker/podman
minikube config set container-runtime docker/podman
minikube config set driver docker
minikube config set container-runtime docker
# Set cpu and memory
# 4096 is minimal baseline, increase to 6144 or 8192 if possible
minikube config set cpus 4
minikube config set memory 4096
# Start the cluster
# Set the memory to at least 4096, increase to 6144 or 8192 if possible
minikube start --cpus 4 --memory 4096 --addons registry --addons metrics-server --insecure-registry "10.0.0.0/24" --insecure-registry "localhost:5000"
# Set the active profile
minikube profile minikube
----
--
Minikube with Podman::
+
--
.Configure and startup minikube with Podman
[source,shell]
----
# Set a driver and container runtime
minikube config set driver podman
minikube config set container-runtime podman
# Start the cluster
# Set the memory to at least 4096, increase to 6144 or 8192 if possible
minikube start --cpus 4 --memory 4096 --addons registry --addons metrics-server --insecure-registry "10.0.0.0/24" --insecure-registry "localhost:5000"
# Set the active profile
Expand Down

0 comments on commit e935651

Please sign in to comment.