You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2021/04/23 13:09:54 UTC

[camel-kamelets] 05/07: Cassandra Source kamelet regen

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

nferraro pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit d4fadf7f0627d422c70d29dbe3360fa6f7d42a0b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Apr 23 14:18:36 2021 +0200

    Cassandra Source kamelet regen
---
 ...cassandraql-source.svg => cassandra-source.svg} |  0
 docs/modules/ROOT/nav.adoc                         |  2 +-
 ...ssandraql-source.adoc => cassandra-source.adoc} | 22 +++++++++++-----------
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/docs/modules/ROOT/assets/images/kamelets/cassandraql-source.svg b/docs/modules/ROOT/assets/images/kamelets/cassandra-source.svg
similarity index 100%
rename from docs/modules/ROOT/assets/images/kamelets/cassandraql-source.svg
rename to docs/modules/ROOT/assets/images/kamelets/cassandra-source.svg
diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc
index b79f0a3..72ea2f8 100644
--- a/docs/modules/ROOT/nav.adoc
+++ b/docs/modules/ROOT/nav.adoc
@@ -18,7 +18,7 @@
 * xref:ROOT:azure-storage-blob-source.adoc[image:kamelets/azure-storage-blob-source.svg[] Azure Storage Blob Source]
 * xref:ROOT:azure-storage-queue-sink.adoc[image:kamelets/azure-storage-queue-sink.svg[] Azure Storage Queue Sink]
 * xref:ROOT:bitcoin-source.adoc[image:kamelets/bitcoin-source.svg[] Bitcoin Source]
-* xref:ROOT:cassandraql-source.adoc[image:kamelets/cassandraql-source.svg[] CassandraQL Source]
+* xref:ROOT:cassandra-source.adoc[image:kamelets/cassandra-source.svg[] CassandraQL Source]
 * xref:ROOT:cron-source.adoc[image:kamelets/cron-source.svg[] Cron Source]
 * xref:ROOT:dropbox-sink.adoc[image:kamelets/dropbox-sink.svg[] Dropbox Sink]
 * xref:ROOT:dropbox-source.adoc[image:kamelets/dropbox-source.svg[] Dropbox Source]
diff --git a/docs/modules/ROOT/pages/cassandraql-source.adoc b/docs/modules/ROOT/pages/cassandra-source.adoc
similarity index 76%
rename from docs/modules/ROOT/pages/cassandraql-source.adoc
rename to docs/modules/ROOT/pages/cassandra-source.adoc
index dc0cdc6..25be571 100644
--- a/docs/modules/ROOT/pages/cassandraql-source.adoc
+++ b/docs/modules/ROOT/pages/cassandra-source.adoc
@@ -1,5 +1,5 @@
 // THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT
-= image:kamelets/cassandraql-source.svg[] CassandraQL Source
+= image:kamelets/cassandra-source.svg[] CassandraQL Source
 
 *Provided by: "Apache Software Foundation"*
 
@@ -7,11 +7,11 @@ Query a Cassandra cluster table.
 
 == Configuration Options
 
-The following table summarizes the configuration options available for the `cassandraql-source` Kamelet:
+The following table summarizes the configuration options available for the `cassandra-source` Kamelet:
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
-| *host {empty}* *| Host| Hostname(s) cassandra server(s). Multiple hosts can be separated by comma.| string| | `"localhosts"`
+| *host {empty}* *| Host| Hostname(s) cassandra server(s). Multiple hosts can be separated by comma.| string| | `"localhost"`
 | *keyspace {empty}* *| Keyspace| Keyspace to use| string| | `"customers"`
 | *password {empty}* *| Password| The password to use for accessing a secured Cassandra Cluster| string| | 
 | *port {empty}* *| Port| Port number of cassandra server(s)| string| | `9042`
@@ -25,27 +25,27 @@ NOTE: Fields marked with ({empty}*) are mandatory.
 
 == Usage
 
-This section summarizes how the `cassandraql-source` can be used in various contexts.
+This section summarizes how the `cassandra-source` can be used in various contexts.
 
 === Knative Source
 
-The `cassandraql-source` Kamelet can be used as Knative source by binding it to a Knative object.
+The `cassandra-source` Kamelet can be used as Knative source by binding it to a Knative object.
 
-.cassandraql-source-binding.yaml
+.cassandra-source-binding.yaml
 [source,yaml]
 ----
 apiVersion: camel.apache.org/v1alpha1
 kind: KameletBinding
 metadata:
-  name: cassandraql-source-binding
+  name: cassandra-source-binding
 spec:
   source:
     ref:
       kind: Kamelet
       apiVersion: camel.apache.org/v1alpha1
-      name: cassandraql-source
+      name: cassandra-source
     properties:
-      host: "localhosts"
+      host: "localhost"
       keyspace: "customers"
       password: "The Password"
       port: 9042
@@ -60,12 +60,12 @@ spec:
 
 Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to.
 
-Save the `cassandraql-source-binding.yaml` file into your hard drive, then configure it according to your needs.
+Save the `cassandra-source-binding.yaml` file into your hard drive, then configure it according to your needs.
 
 You can run the source using the following command:
 
 [source,shell]
 ----
-kubectl apply -f cassandraql-source-binding.yaml
+kubectl apply -f cassandra-source-binding.yaml
 ----
 // THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT