Skip to content

Commit

Permalink
Added MySQL Sink Kamelet
Browse files Browse the repository at this point in the history
  • Loading branch information
oscerd committed Jun 11, 2021
1 parent a90a284 commit 681e2d9
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/modules/ROOT/assets/images/kamelets/mysql-sink.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
79 changes: 79 additions & 0 deletions docs/modules/ROOT/pages/mysql-sink.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT
= image:kamelets/mysql-sink.svg[] MySQL Sink

*Provided by: "Apache Software Foundation"*

*Support Level for this Kamelet is: "Preview"*

Send data to a MySQL Database.

In you KameletBinding file you'll need to explicitly declare the mysql driver dependency, like in the following YAML snippet

spec:
integration:
dependencies:
- "mvn:mysql:mysql-connector-java:<version>"

== Configuration Options

The following table summarizes the configuration options available for the `mysql-sink` Kamelet:
[width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
|===
| Property| Name| Description| Type| Default| Example
| *databaseName {empty}* *| Database Name| The Database Name we are pointing| string| |
| *password {empty}* *| Password| The password to use for accessing a secured MySQL Database| string| |
| *port {empty}* *| Port| Server Port for the data source| string| | `3306`
| *query {empty}* *| Query| The Query to execute against the MySQL Database| string| |
| *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
| *username {empty}* *| Username| The username to use for accessing a secured MySQL Database| string| |
|===

NOTE: Fields marked with ({empty}*) are mandatory.

== Usage

This section summarizes how the `mysql-sink` can be used in various contexts.

=== Knative Sink

The `mysql-sink` Kamelet can be used as Knative sink by binding it to a Knative object.

.mysql-sink-binding.yaml
[source,yaml]
----
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: mysql-sink-binding
spec:
source:
ref:
kind: InMemoryChannel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: mysql-sink
properties:
databaseName: "The Database Name"
password: "The Password"
port: 3306
query: "The Query"
serverName: "localhost"
username: "The Username"
----

Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to.

Save the `mysql-sink-binding.yaml` file into your hard drive, then configure it according to your needs.

You can run the sink using the following command:

[source,shell]
----
kubectl apply -f mysql-sink-binding.yaml
----
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT

0 comments on commit 681e2d9

Please sign in to comment.