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 2020/09/07 15:02:33 UTC

[camel-kafka-connector] branch master updated: Update try-it-out-on-openshift-with-strimzi.adoc

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-kafka-connector.git


The following commit(s) were added to refs/heads/master by this push:
     new 72760e0  Update try-it-out-on-openshift-with-strimzi.adoc
72760e0 is described below

commit 72760e0fc548f793e581ae3cb5ac0c2a895d8987
Author: Stephen McCarthy <29...@users.noreply.github.com>
AuthorDate: Mon Sep 7 15:52:04 2020 +0100

    Update try-it-out-on-openshift-with-strimzi.adoc
    
    Update the "Try it on OpenShift" docs on creating a connector instance to match the latest AWS S3 connector configuration in:
    https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-s3-kafka-source-connector.html
---
 .../ROOT/pages/try-it-out-on-openshift-with-strimzi.adoc     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/modules/ROOT/pages/try-it-out-on-openshift-with-strimzi.adoc b/docs/modules/ROOT/pages/try-it-out-on-openshift-with-strimzi.adoc
index b18b46e..e3d3048 100644
--- a/docs/modules/ROOT/pages/try-it-out-on-openshift-with-strimzi.adoc
+++ b/docs/modules/ROOT/pages/try-it-out-on-openshift-with-strimzi.adoc
@@ -112,9 +112,9 @@ oc exec -i -c kafka my-cluster-kafka-0 -- curl -X POST \
     "camel.source.path.bucketNameOrArn": "camel-connector-test",
     "camel.source.endpoint.autocloseBody": false,
     "camel.source.maxPollDuration": 10000,
-    "camel.component.aws-s3.configuration.access-key": "xxx",
-    "camel.component.aws-s3.configuration.secret-key": "xxx",
-    "camel.component.aws-s3.configuration.region": "xxx"
+    "camel.component.aws-s3.accessKey": "xxx",
+    "camel.component.aws-s3.secretKey": "xxx",
+    "camel.component.aws-s3.region": "xxx"
   }
 }
 EOF
@@ -142,9 +142,9 @@ spec:
     camel.source.path.bucketNameOrArn: camel-connector-test
     camel.source.endpoint.autocloseBody: false
     camel.source.maxPollDuration: 10000
-    camel.component.aws-s3.configuration.access-key: xxx
-    camel.component.aws-s3.configuration.secret-key: xxx
-    camel.component.aws-s3.configuration.region: xxx
+    camel.component.aws-s3.accessKey: xxx
+    camel.component.aws-s3.secretKey: xxx
+    camel.component.aws-s3.region: xxx
 EOF
 ----