You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2020/03/27 14:33:47 UTC

[camel] branch master updated: CAMEL-14803: Remove Karaf docs from user manual

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4ed640a  CAMEL-14803: Remove Karaf docs from user manual
4ed640a is described below

commit 4ed640ada9fd09f0593c123330ea6af2426bea84
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Fri Mar 27 15:32:59 2020 +0100

    CAMEL-14803: Remove Karaf docs from user manual
    
    Karaf docs are now maintained in the camel-karaf repository.
---
 docs/user-manual/modules/ROOT/pages/index.adoc |  1 -
 docs/user-manual/modules/ROOT/pages/karaf.adoc | 68 --------------------------
 2 files changed, 69 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/index.adoc b/docs/user-manual/modules/ROOT/pages/index.adoc
index 13529e3..43f350e 100644
--- a/docs/user-manual/modules/ROOT/pages/index.adoc
+++ b/docs/user-manual/modules/ROOT/pages/index.adoc
@@ -52,7 +52,6 @@ For a deeper and better understanding of Apache Camel, an xref:faq/what-is-camel
 * xref:camel-boot.adoc[Camel Boot]
 * xref:components::cdi.adoc[Working with Camel and CDI]
 * xref:spring.adoc[Working with Camel and Spring]
-* xref:karaf.adoc[Working with Camel and Karaf]
 * xref:faq/how-do-i-configure-endpoints.adoc[How do I configure endpoints?]
 * xref:bean-integration.adoc[Bean Integration]
 * xref:configuring-camel.adoc[Configuring Camel]
diff --git a/docs/user-manual/modules/ROOT/pages/karaf.adoc b/docs/user-manual/modules/ROOT/pages/karaf.adoc
deleted file mode 100644
index d1d0a69..0000000
--- a/docs/user-manual/modules/ROOT/pages/karaf.adoc
+++ /dev/null
@@ -1,68 +0,0 @@
-[[Karaf-ApacheKarafSupport]]
-= Apache Karaf Support
-
-Apache Camel is designed to work nicely into
-http://karaf.apache.org[Apache Karaf] OSGi container.
-
-It includes:
-
-* Camel features descriptor allowing to easily and quickly install Camel
-in Karaf.
-* Camel Karaf commands allowing you to view, start, stop, get info, about the
-Camel contexts and routes running in the Karaf instance.
-
-
-[[Karaf-InstallCamelinKaraf]]
-== Install Camel in Karaf
-
-Assuming that you have a running Karaf instance, you can register the
-Camel features descriptor:
-
-[source,sh]
-----
-karaf@root> features:repo-add camel 2.24.2
-----
-
-where 2.24.2 is the Camel version
-
-Now, we have all Camel features available:
-
-To install Camel, just install the `camel` feature:
-
-[source,sh]
-----
-karaf@root> feature:install camel
-----
-
-You have to install the Camel features depending of your requirements.
-
-If, in your route, you use an endpoint like `stream:out`, you have to
-install the `camel-stream` feature:
-
-[source,sh]
-----
-karaf@root> feature:install camel-stream
-----
-
-And so on, for example if you use the sql, and http components:
-
-[source,sh]
-----
-karaf@root> feature:install camel-sql camel-http
-----
-
-[[Karaf-CamelKarafcommands]]
-== Camel Karaf commands
-
-When you install the camel feature, new Camel Karaf commands become available
-automatically.
-
-For example to list all running Camel contexts:
-[source,sh]
-----
-karaf@root> karaf@root> camel:context-list
-----
-
-You can see all the Camel commands by typing `camel:` and then pressing TAB key.
-
-TIP: use kbd:[TAB] key for completion on the Camel context name.