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 <anco...@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.