You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2018/09/28 13:00:57 UTC

[camel-k] 04/06: Updated minikube doc

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit a9078e304c0075f7b79b00128bcbdac030384e50
Author: nferraro <ni...@gmail.com>
AuthorDate: Fri Sep 28 12:53:33 2018 +0200

    Updated minikube doc
---
 README.adoc             |  2 +-
 docs/cluster-setup.adoc | 19 ++++++++++++++++++-
 2 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/README.adoc b/README.adoc
index fadd6d1..085ee5a 100644
--- a/README.adoc
+++ b/README.adoc
@@ -13,7 +13,7 @@ Apache Camel K (a.k.a. Kamel) is a lightweight integration framework built from
 Camel K allows to run integrations directly on a Kubernetes or OpenShift cluster.
 To use it, you need to be connected to a cloud environment or to a local cluster created for development purposes.
 
-If you need help on how to create a local development environment based on *Minishift* or *Minikube* (Minikube will be supported soon, stay tuned!), you can follow the link:/docs/cluster-setup.adoc[local cluster setup guide].
+If you need help on how to create a local development environment based on *Minishift* or *Minikube*, you can follow the link:/docs/cluster-setup.adoc[local cluster setup guide].
 
 [[installation]]
 === Installation
diff --git a/docs/cluster-setup.adoc b/docs/cluster-setup.adoc
index 7e52648..ef38dd6 100644
--- a/docs/cluster-setup.adoc
+++ b/docs/cluster-setup.adoc
@@ -24,7 +24,24 @@ Then you can start the cluster with:
 minishift start
 ```
 
+You can now proceed to link:/README.adoc[install Camel K].
+
 [[minikube]]
 == Minikube
 
-Minikube and Kubernetes are not yet supported (but support is coming soon).
+You can run Camel K integrations on plain Kubernetes using the Minikube cluster creation tool.
+Follow the instructions in the https://github.com/kubernetes/minikube#installation[official doc] for the installation.
+
+Start a new instance of Minikube using the command:
+
+```
+minikube start
+```
+
+After the startup process is completed, you need to **enable the `registry` addon**:
+
+```
+minikube addons enable registry
+```
+
+You can now proceed to link:/README.adoc[install Camel K].