mirror of https://github.com/knative/docs.git
29 lines
711 B
YAML
29 lines
711 B
YAML
# Apache Camel Timer Source
|
|
#
|
|
# Timer Component documentation: https://camel.apache.org/components/latest/timer-component.html
|
|
#
|
|
# List of available Apache Camel components: https://camel.apache.org/components/latest/
|
|
#
|
|
apiVersion: sources.eventing.knative.dev/v1alpha1
|
|
kind: CamelSource
|
|
metadata:
|
|
name: camel-timer-source
|
|
spec:
|
|
source:
|
|
flow:
|
|
from:
|
|
uri: timer:tick
|
|
parameters:
|
|
period: 3s
|
|
steps:
|
|
- set-header:
|
|
name: Content-Type
|
|
constant: text/plain
|
|
- set-body:
|
|
constant: Hello world!
|
|
sink:
|
|
ref:
|
|
apiVersion: messaging.knative.dev/v1alpha1
|
|
kind: InMemoryChannel
|
|
name: camel-test
|