Creating a broker

Once you have installed Knative Eventing, you can create an instance of the multi-tenant (MT) channel-based broker that is provided by default. The default backing channel type for an MT channel-based broker is InMemoryChannel.

You can create a broker by using the kn CLI or by applying YAML files using kubectl.

knkubectl

  1. You can create a broker in current namespace by entering the following command:

    1. kn broker create <broker-name> -n <namespace>

    Note

    If you choose not to specify a namespace, the broker will be created in the current namespace.

  2. Optional: Verify that the broker was created by listing existing brokers. Enter the following command:

    1. kn broker list
  3. Optional: You can also verify the broker exists by describing the broker you have created. Enter the following command:

    1. kn broker describe <broker-name>

The YAML in the following example creates a broker named default in the current namespace. For more information about configuring broker options using YAML, see the full broker configuration example.

  1. Create a broker in the current namespace by creating a YAML file using the following template:

    1. apiVersion: eventing.knative.dev/v1
    2. kind: Broker
    3. metadata:
    4. name: <broker-name>
  2. Apply the YAML file by running the command:

    1. kubectl apply -f <filename>.yaml

    Where <filename> is the name of the file you created in the previous step.

  3. Optional: Verify that the broker is working correctly, by entering the following command:

    1. kubectl -n <namespace> get broker <broker-name>

    This shows information about your broker. If the broker is working correctly, it shows a READY status of True:

    1. NAME READY REASON URL AGE
    2. default True http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default 1m

    If the READY status is False, wait a few moments and then run the command again.