This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 2008fc7a1ee CAMEL-18515: camel-jbang - Command to list more from the
catalog.
2008fc7a1ee is described below
commit 2008fc7a1ee7e2c3e8f0300e4124efa638bc0dd0
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat Sep 17 10:59:23 2022 +0200
CAMEL-18515: camel-jbang - Command to list more from the catalog.
---
.../modules/ROOT/pages/camel-jbang.adoc | 28 ++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index 08df241ce79..0657a697ad8 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -959,6 +959,34 @@ You can then use the Integrated Development Environment
(IDE) of your choice. Fo
A specific how-to is available for VS Code, see this
https://youtu.be/owNhWxf42qk[video] or this
/blog/2022/05/start-camel-quarkus-application-with-camel-textual-debug-in-vscode/[blogpost].
+== Listing what Camel components is available
+
+Camel comes with a lot of artifacts out of the box which comes as:
+
+- components
+- data formats
+- expression languages
+- miscellaneous components
+- kamelets
+
+You can use the Camel CLI to list what Camel provides via the `camel catalog`
command.
+For example to list all the components
+
+[source,bash]
+----
+camel catalog components
+----
+
+And to see which Kamelets are available:
+
+[source,bash]
+----
+camel catalog kamelets
+----
+
+TIP: Use `camel catalog --help` to see all possible commands.
+
+
== Open API
Camel JBang allows to quickly expose an Open API service using _contract
first_ approach,