Using a Knative Service as a source

In this tutorial, you will use the CloudEvents Player app to showcase the core concepts of Knative Eventing. By the end of this tutorial, you should have an architecture that looks like this:

The CloudEvents Player acts as both a source and a sink for CloudEvents

The above image is Figure 6.6 from Knative in Action.

Creating your first source

The CloudEvents Player acts as a Source for CloudEvents by intaking the name of the Broker as an environment variable, BROKER_NAME. If the Broker is located in a different namespace it is possible to also set the BROKER_NAMESPACE environment variable. Alternatively, you can just use the BROKER_URI.

You will send CloudEvents to the Broker through the CloudEvents Player application.

Create the CloudEvents Player Service:

knYAML

Run the command:

  1. kn service create cloudevents-player \
  2. --image quay.io/ruben/cloudevents-player:latest

Expected output

  1. Service 'cloudevents-player' created to latest revision 'cloudevents-player-00001' is available at URL:
  2. http://cloudevents-player.default.${LOADBALANCER_IP}.sslip.io
  1. Copy the following YAML into a file named cloudevents-player.yaml:

    1. apiVersion: serving.knative.dev/v1
    2. kind: Service
    3. metadata:
    4. name: cloudevents-player
    5. spec:
    6. template:
    7. metadata:
    8. annotations:
    9. autoscaling.knative.dev/min-scale: "1"
    10. spec:
    11. containers:
    12. - image: quay.io/ruben/cloudevents-player:latest
  2. Apply the YAML file by running the command:

    1. kubectl apply -f cloudevents-player.yaml

    Expected output

    1. service.serving.knative.dev/cloudevents-player created

The service is now running but it doesn’t know where the broker is so let’s create a SinkBinding between the service and the broker.

knYAML

Run the command:

  1. kn source binding create ce-player-binding --subject "Service:serving.knative.dev/v1:cloudevents-player" --sink broker:example-broker

Expected output

  1. Sink binding 'ce-player-binding' created in namespace 'default'.
  1. Copy the following YAML into a file named cloudevents-player-binding.yaml:

    1. apiVersion: sources.knative.dev/v1
    2. kind: SinkBinding
    3. metadata:
    4. name: ce-player-binding
    5. spec:
    6. sink:
    7. ref:
    8. apiVersion: eventing.knative.dev/v1
    9. kind: Broker
    10. name: example-broker
    11. subject:
    12. apiVersion: serving.knative.dev/v1
    13. kind: Service
    14. name: cloudevents-player
  2. Apply the YAML file by running the command:

    1. kubectl apply -f cloudevents-player-binding.yaml

    Expected output

    1. sinkbinding.sources.knative.dev/ce-player-binding created

Examining the CloudEvents Player

You can use the CloudEvents Player to send and receive CloudEvents. If you open the Service URL in your browser, the Create Event form appears.

The Service URL is http://cloudevents-player.default.${LOADBALANCER_IP}.sslip.io, for example, http://cloudevents-player.default.127.0.0.1.sslip.io for kind.

The user interface for the CloudEvents Player

What do these fields mean?

FieldDescription
Event IDA unique ID. Click the loop icon to generate a new one.
Event TypeAn event type.
Event SourceAn event source.
SpecversionDemarcates which CloudEvents spec you’re using (should always be 1.0).
MessageThe data section of the CloudEvent, a payload which is carrying the data you care to be delivered.

For more information on the CloudEvents Specification, check out the CloudEvents Spec.

Sending an event

Try sending an event using the CloudEvents Player interface:

  1. Fill in the form with whatever data you want.
  2. Ensure your Event Source does not contain any spaces.
  3. Click SEND EVENT.

CloudEvents Player Send

Clicking the Using a Knative Service as a source - 图4 shows you the CloudEvent as the Broker sees it.

Event Details

Want to send events using the command line instead?

As an alternative to the Web form, events can also be sent/viewed using the command line.

To post an event:

  1. curl -i http://cloudevents-player.default.${LOADBALANCER_IP}.sslip.io \
  2. -H "Content-Type: application/json" \
  3. -H "Ce-Id: 123456789" \
  4. -H "Ce-Specversion: 1.0" \
  5. -H "Ce-Type: some-type" \
  6. -H "Ce-Source: command-line" \
  7. -d '{"msg":"Hello CloudEvents!"}'

And to view events:

  1. curl http://cloudevents-player.default.${LOADBALANCER_IP}.sslip.io/messages

The Using a Knative Service as a source - 图6 icon in the “Status” column implies that the event has been sent to our Broker… but where has the event gone? Well, right now, nowhere!

A Broker is simply a receptacle for events. In order for your events to be sent anywhere, you must create a Trigger which listens for your events and places them somewhere. And, you’re in luck; you’ll create your first Trigger on the next page!