This is an automated email from the ASF dual-hosted git repository.

ricardozanini pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-kogito-docs.git


The following commit(s) were added to refs/heads/main by this push:
     new e935651cf NO-ISSUE: Improve Minikube setup (#606)
e935651cf is described below

commit e935651cf552a84e89afaebad875d51c97557a9a
Author: Tomáš David <[email protected]>
AuthorDate: Mon Mar 25 15:58:15 2024 -0400

    NO-ISSUE: Improve Minikube setup (#606)
    
    Improve Minikube setup
---
 .../getting-started/preparing-environment.adoc     | 30 ++++++++++++++++------
 1 file changed, 22 insertions(+), 8 deletions(-)

diff --git 
a/serverlessworkflow/modules/ROOT/pages/getting-started/preparing-environment.adoc
 
b/serverlessworkflow/modules/ROOT/pages/getting-started/preparing-environment.adoc
index 27fc7908f..73a1feb38 100644
--- 
a/serverlessworkflow/modules/ROOT/pages/getting-started/preparing-environment.adoc
+++ 
b/serverlessworkflow/modules/ROOT/pages/getting-started/preparing-environment.adoc
@@ -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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to