Cloud Events - .NET Core
The default mode has the app reply to your input events with the output event, which is simplest for demonstrating things working in isolation, but is also the model for working for the Knative Eventing concept.
K_SINK
mode has the app send events to the destination encoded in$K_SINK
, which is useful to demonstrate how folks can synthesize events to send to a Service or Broker when not initiated by a Broker invocation (e.g. implementing an event source)
Do the following the steps to create the sample code and then deploy the app to your cluster. You can also download a working copy of the sample, by running the following commands:
- A Kubernetes cluster with Knative installed and DNS configured. Follow the installation instructions if you need to create one.
- installed and running on your local machine, and a Docker Hub account configured (we’ll use it for a container registry).
- If you look in
controllers\CloudEventsController.cs
, you will see two key functions for the different modes of operation:
// This is called whenever an event is received if $K_SINK is set, and sends a new event
// to the url in $K_SINK.
}
// This is called whenever an event is received if $K_SINK is NOT set, and it replies with
// the new event instead.
}
- If you look in
Dockerfile
, you will see a method for pulling in the dependencies and building an ASP.NET container based on Alpine. You can build and push this to your registry of choice via:
kubectl apply -f service.yaml
Get the URL for your Service with:
$ curl -X POST \
-H "ce-specversion: 1.0" \
-H "ce-source: curl-command" \
-H "ce-type: curl.demo" \
-H "ce-id: 123-abc" \
-d '{"name":"Dave"}' \
<service-URL>
Where <service-URL>
is the URL from the kubectl get ksvc
command.
You will get back: