Creating a PingSource object
This topic describes how to create a PingSource object.
A PingSource is an event source that produces events with a fixed payload on a specified cron schedule.
The following example shows how you can configure a PingSource as an event source that sends events every minute to a Knative service named event-display
that is used as a sink. If you have an existing sink, you can replace the examples with your own values.
Before you begin
To create a PingSource:
- You must install Knative Eventing. The PingSource event source type is enabled by default when you install Knative Eventing.
- You can use either
kubectl
or kn commands to create components such as a sink and PingSource. - You can use either
kubectl
or kail for logging during the verification step in this procedure.
Create a PingSource object
Optional: Create a namespace for your PingSource by running the command:
kubectl create namespace <namespace>
Where
<namespace>
is the namespace that you want your PingSource to use. For example,pingsource-example
.Note
Creating a namespace for your PingSource and related components allows you to view changes and events for this workflow more easily, because these are isolated from the other components that might exist in your
default
namespace.It also makes removing the source easier, because you can delete the namespace to remove all of the resources.
Create a sink. If you do not have your own sink, you can use the following example Service that dumps incoming messages to a log:
Copy the YAML below into a file:
apiVersion: apps/v1
kind: Deployment
metadata:
name: event-display
namespace: <namespace>
spec:
replicas: 1
selector:
matchLabels: &labels
app: event-display
template:
metadata:
labels: *labels
spec:
containers:
- name: event-display
image: gcr.io/knative-releases/knative.dev/eventing/cmd/event_display
---
kind: Service
apiVersion: v1
metadata:
name: event-display
namespace: <namespace>
spec:
selector:
app: event-display
ports:
- protocol: TCP
port: 80
targetPort: 8080
Where
<namespace>
is the name of the namespace that you created in step 1 above.Apply the YAML file by running the command:
kubectl apply -f <filename>.yaml
Where
<filename>
is the name of the file you created in the previous step.
Create the PingSource object.
Note
The data you want to send must be represented as text in the PingSource YAML file. Events that send binary data cannot be directly serialized in YAML. However, you can send binary data that is base64 encoded by using
dataBase64
in place ofdata
in the PingSource spec.Use one of the following options:
knkn: binary dataYAMLYAML: binary data
To create a PingSource that sends data that can be represented as plain text, such as text, JSON, or XML, run the command:
kn source ping create <pingsource-name> \
--namespace <namespace> \
--schedule "<cron-schedule>" \
--data '<data>' \
--sink <sink-name>
Where:
<pingsource-name>
is the name of the PingSource that you want to create, for example,test-ping-source
.<namespace>
is the name of the namespace that you created in step 1 above.<cron-schedule>
is a cron expression for the schedule for the PingSource to send events, for example,*/1 * * * *
sends an event every minute. Both standard and Quartz Scheduler cron formats are supported, with the latter supporting a seconds field.<data>
is the data you want to send. This data must be represented as text, not binary. For example, a JSON object such as{"message": "Hello world!"}
.<sink-name>
is the name of your sink, for example,http://event-display.pingsource-example.svc.cluster.local
.
For a list of available options, see the Knative client documentation.
To create a PingSource that sends binary data, run the command:
kn source ping create <pingsource-name> \
--namespace <namespace> \
--schedule "<cron-schedule>" \
--data '<base64-data>' \
--encoding 'base64' \
--sink <sink-name>
Where:
<pingsource-name>
is the name of the PingSource that you want to create, for example,test-ping-source
.<namespace>
is the name of the namespace that you created in step 1 above.<cron-schedule>
is a cron expression for the schedule for the PingSource to send events, for example,*/1 * * * *
sends an event every minute. Both standard and Quartz Scheduler cron formats are supported, with the latter supporting a seconds field.<base64-data>
is the base64 encoded binary data that you want to send, for example,ZGF0YQ==
.<sink-name>
is the name of your sink, for example,http://event-display.pingsource-example.svc.cluster.local
.
For a list of available options, see the Knative client documentation.
To create a PingSource that sends data that can be represented as plain text, such as text, JSON, or XML:
Create a YAML file using the template below:
apiVersion: sources.knative.dev/v1
kind: PingSource
metadata:
name: <pingsource-name>
namespace: <namespace>
spec:
schedule: "<cron-schedule>"
contentType: "<content-type>"
data: '<data>'
sink:
ref:
apiVersion: v1
kind: <sink-kind>
name: <sink-name>
Where:
<pingsource-name>
is the name of the PingSource that you want to create, for example,test-ping-source
.<namespace>
is the name of the namespace that you created in step 1 above.<cron-schedule>
is a cron expression for the schedule for the PingSource to send events, for example,*/1 * * * *
sends an event every minute. Both standard and Quartz Scheduler cron formats are supported, with the latter supporting a seconds field.<content-type>
is the media type of the data you want to send, for example,application/json
.<data>
is the data you want to send. This data must be represented as text, not binary. For example, a JSON object such as{"message": "Hello world!"}
.<sink-kind>
is any supported Addressable object that you want to use as a sink, for example, aService
orDeployment
.<sink-name>
is the name of your sink, for example,event-display
.
For more information about the fields you can configure for the PingSource object, see PingSource reference.
Apply the YAML file by running the command:
kubectl apply -f <filename>.yaml
Where
<filename>
is the name of the file you created in the previous step.
To create a PingSource that sends binary data:
Create a YAML file using the template below:
apiVersion: sources.knative.dev/v1
kind: PingSource
metadata:
name: <pingsource-name>
namespace: <namespace>
spec:
schedule: "<cron-schedule>"
contentType: "<content-type>"
dataBase64: "<base64-data>"
sink:
ref:
apiVersion: v1
kind: <sink-kind>
name: <sink-name>
Where:
<pingsource-name>
is the name of the PingSource that you want to create, for example,test-ping-source-binary
.<namespace>
is the name of the namespace that you created in step 1 above.<cron-schedule>
is a cron expression for the schedule for the PingSource to send events, for example,*/1 * * * *
sends an event every minute. Both standard and Quartz Scheduler cron formats are supported, with the latter supporting a seconds field.<content-type>
is the media type of the data you want to send, for example,application/json
.<base64-data>
is the base64 encoded binary data that you want to send, for example,ZGF0YQ==
.<sink-kind>
is any supported Addressable object that you want to use as a sink, for example, a Kubernetes Service.<sink-name>
is the name of your sink, for example,event-display
.
For more information about the fields you can configure for the PingSource object, see PingSource reference.
Apply the YAML file by running the command:
kubectl apply -f <filename>.yaml
Where
<filename>
is the name of the file you created in the previous step.
Verify the PingSource object
View the logs for the
event-display
event consumer by running the command:kubectlkail
kubectl -n pingsource-example logs -l app=event-display --tail=100
kail -l serving.knative.dev/service=event-display -c user-container --since=10m
Verify that the output returns the properties of the events that your PingSource sent to your sink. In the example below, the command has returned the
Attributes
andData
properties of the events that the PingSource sent to theevent-display
Service:☁️ cloudevents.Event
Validation: valid
Context Attributes,
specversion: 1.0
type: dev.knative.sources.ping
source: /apis/v1/namespaces/pingsource-example/pingsources/test-ping-source
id: 49f04fe2-7708-453d-ae0a-5fbaca9586a8
time: 2021-03-25T19:41:00.444508332Z
datacontenttype: application/json
Data,
{
"message": "Hello world!"
}
Delete the PingSource object
You can either delete the PingSource and all related resources, or delete the resources individually:
To remove the PingSource object and all of the related resources, delete the namespace by running the command:
kubectl delete namespace <namespace>
Where
<namespace>
is the namespace that contains the PingSource object.To delete the PingSource instance only, run the command:
knkubectl
kn source ping delete <pingsource-name>
Where
<pingsource-name>
is the name of the PingSource you want to delete, for example,test-ping-source
.kubectl delete pingsources.sources.knative.dev <pingsource-name>
Where
<pingsource-name>
is the name of the PingSource you want to delete, for example,test-ping-source
.To delete the sink only, run the command:
knkubectl
kn service delete <sink-name>
Where
<sink-name>
is the name of your sink, for example,event-display
.kubectl delete service.serving.knative.dev <sink-name>
Where
<sink-name>
is the name of your sink, for example,event-display
.