blob: 7c491ed82a740b9e8ad0d2d867eda8a3a54ecb60 [file] [log] [blame]
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT
= image:kamelets/cron-source.svg[] Cron Source
*Provided by: "Apache Software Foundation"*
Send events at specific time.
== Configuration Options
The following table summarizes the configuration options available for the `cron-source` Kamelet:
[width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
|===
| Property| Name| Description| Type| Default| Example
| *message {empty}* *| Message| The message to generate| string| | `"hello world"`
| *schedule {empty}* *| Cron Schedule| A cron expression that will be used to generate events| string| | `"0/3 10 * * * ?"`
|===
NOTE: Fields marked with ({empty}*) are mandatory.
== Usage
This section summarizes how the `cron-source` can be used in various contexts.
=== Knative Source
The `cron-source` Kamelet can be used as Knative source by binding it to a Knative object.
.cron-source-binding.yaml
[source,yaml]
----
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: cron-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: cron-source
properties:
message: "hello world"
schedule: "0/3 10 * * * ?"
sink:
ref:
kind: InMemoryChannel
apiVersion: messaging.knative.dev/v1
name: mychannel
----
Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to.
Save the `cron-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 cron-source-binding.yaml
----
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT