You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/10/01 13:02:40 UTC

[camel] branch master updated (8f58182 -> ec694db)

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

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


    from 8f58182  Regen docs
     new f6d632b  Camel AWS EKS: Added sample code for producer in docs
     new ec694db  Regen docs

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 components/camel-aws-eks/src/main/docs/aws-eks-component.adoc | 10 ++++++++++
 docs/components/modules/ROOT/pages/aws-eks-component.adoc     | 10 ++++++++++
 2 files changed, 20 insertions(+)


[camel] 02/02: Regen docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit ec694db8caf580364450654a9bed951d55f6ae42
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 15:02:21 2019 +0200

    Regen docs
---
 docs/components/modules/ROOT/pages/aws-eks-component.adoc | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/docs/components/modules/ROOT/pages/aws-eks-component.adoc b/docs/components/modules/ROOT/pages/aws-eks-component.adoc
index ff274b7..0b2dfb0 100644
--- a/docs/components/modules/ROOT/pages/aws-eks-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws-eks-component.adoc
@@ -159,6 +159,16 @@ Camel-AWS EKS component provides the following operation on the producer side:
 - describeCluster
 - deleteCluster
 
+== Producer Examples
+
+- listClusters: this operation will list the available clusters in EKS
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:listClusters")
+    .to("aws-eks://test?ecsClient=#amazonEcsClient&operation=listClusters")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AmazonEKS client in registry
 
 The component is capable of detecting the presence of an AmazonEKS bean into the registry.


[camel] 01/02: Camel AWS EKS: Added sample code for producer in docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f6d632bb0a574390ee156aefb0818ecb1814f28c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 15:01:40 2019 +0200

    Camel AWS EKS: Added sample code for producer in docs
---
 components/camel-aws-eks/src/main/docs/aws-eks-component.adoc | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/components/camel-aws-eks/src/main/docs/aws-eks-component.adoc b/components/camel-aws-eks/src/main/docs/aws-eks-component.adoc
index 2e0989a..b4cda1d 100644
--- a/components/camel-aws-eks/src/main/docs/aws-eks-component.adoc
+++ b/components/camel-aws-eks/src/main/docs/aws-eks-component.adoc
@@ -158,6 +158,16 @@ Camel-AWS EKS component provides the following operation on the producer side:
 - describeCluster
 - deleteCluster
 
+== Producer Examples
+
+- listClusters: this operation will list the available clusters in EKS
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:listClusters")
+    .to("aws-eks://test?ecsClient=#amazonEcsClient&operation=listClusters")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AmazonEKS client in registry
 
 The component is capable of detecting the presence of an AmazonEKS bean into the registry.