Creating a ContainerSource object

    This topic describes how to configure ContainerSource as an event source for functions.

    The ContainerSource object starts a container image that generates events and sends messages to a sink URI. You can also use ContainerSource to support your own event sources in Knative.

    In the examples below, the event source is a heartbeats container and the sink is a Knative Service. If you have an existing event source and sink, you can replace the examples with your own values.

    Before you can create a ContainerSource object:

    • You must have Knative Eventing installed on your cluster.
    • If you want to use the example heartbeats event source below, you must also:
      • Install
      • Set . For example, gcr.io/[gcloud-project] or docker.io/<username>
      • Authenticate with your KO_DOCKER_REPO
      • Install docker
    1. Build an image of your event source and publish it to your image repository. Your image must read the environment variable K_SINK and post messages to the URL specified in K_SINK. If you do not already have an image, you can use the following example heartbeats event source by running the commands:

      1. ko publish ko://knative.dev/eventing/cmd/heartbeats
    2. Create a namespace for your ContainerSource by running the command:

      1. kubectl create namespace <namespace>

      Where <namespace> is the namespace that you want your ContainerSource to use. For example, containersource-example.

    3. Create a sink. If you do not already have a sink, you can use the following Knative Service, which dumps incoming messages into its log, by running the command:

      Note

      kn

      YAML

      1. kubectl -n containersource-example apply -f - <<EOF
      2. apiVersion: apps/v1
      3. kind: Deployment
      4. metadata:
      5. name: event-display
      6. spec:
      7. selector:
      8. matchLabels: &labels
      9. app: event-display
      10. template:
      11. metadata:
      12. labels: *labels
      13. containers:
      14. - name: event-display
      15. image: gcr.io/knative-releases/knative.dev/eventing/cmd/event_display
      16. ---
      17. kind: Service
      18. apiVersion: v1
      19. metadata:
      20. name: event-display
      21. spec:
      22. selector:
      23. app: event-display
      24. ports:
      25. - protocol: TCP
      26. targetPort: 8080
      27. EOF
    4. Create a concrete ContainerSource with specific arguments and environment settings by running the command:

      kn

      1. kn source container create <name> --image <image-uri> --sink <sink>

      Where:

      • <name> is the name you want for your ContainerSource object, for example, test-heartbeats.
      • <image-uri> corresponds to the image URI you built and published in step 1, for example, gcr.io/[gcloud-project]/knative.dev/eventing/cmd/heartbeats.
      • is the name of your sink, for example <event-display>.

      For a list of available options, see the .

      YAML

      Where:

      • <namespace> is the namespace you created for your ContainerSource, for example, containersource-example.
      • <containersource-name> is the name you want for your ContainerSource, for example, test-heartbeats.
      • <event-source-image-uri> corresponds to the image URI you built and published in step 1, for example, gcr.io/[gcloud-project]/knative.dev/eventing/cmd/heartbeats.
      • <container-name> is the name of your event source, for example, heartbeats.
      • <pod-name> is the name of the Pod that the container runs in, for example, mypod.
      • <pod-namespace> is the namespace that the Pod runs in, for example, event-test.
      • <sink> is the name of your sink, for example, event-display.

      For more information about the fields you can configure for the ContainerSource object, see ContainerSource Reference.

      Arguments and environment variables are set and are passed to the container.

    1. View the logs for your event consumer by running the command:

      1. kubectl -n <namespace> logs -l <pod-name> --tail=200

      Where:

      • <namespace> is the namespace that contains the ContainerSource object.
      • <pod-name> is the name of the Pod that the container runs in.

      For example:

      1. $ kubectl -n containersource-example logs -l app=event-display --tail=200
    2. Verify that the output returns the properties of the events that your ContainerSource sent to your sink. In the example below, the command has returned the Attributes and Data properties of the events that the ContainerSource sent to the event-display Service:

    To delete the ContainerSource object and all of the related resources in the namespace:

    • Delete the namespace by running the command:

      1. kubectl delete namespace <namespace>

      Where is the namespace that contains the ContainerSource object.

    See the .