Skip to content

Latest commit

 

History

History

eventing-iot

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

IoT Event Processing using Knative and IoT core

This demo shows how to bind a running Knative service to an IoT core using GCP PubSub as the event source. With minor modifications, it can be used to bind a running service to anything that sends events via GCP PubSub.

All commands are given relative to the root of this repository

Setup

To make the following commands easier, we are going to set the various variables here and use them later.

Variables you must Change

export IOTCORE_PROJECT="s9-demo"

Variables you may Change

export CHANNEL_NAME="iot-demo"
export IOTCORE_REGISTRY="iot-demo"
export IOTCORE_DEVICE="iot-demo-client"
export IOTCORE_REGION="us-central1"
export IOTCORE_TOPIC_DATA="iot-demo-pubsub-topic"
export IOTCORE_TOPIC_DEVICE="iot-demo-device-pubsub-topic"

Prerequisites

Configuration

  • Enable the 'Cloud Pub/Sub API' on that project.
gcloud services enable pubsub.googleapis.com
  • Create the two GCP PubSub topics.
gcloud pubsub topics create $IOTCORE_TOPIC_DATA
gcloud pubsub topics create $IOTCORE_TOPIC_DEVICE

GCP PubSub Source

  1. Create a GCP Service Account.

    1. Determine the Service Account to use, or create a new one.
    2. Give that Service Account the 'Pub/Sub Editor' role on your GCP project.
    3. Download a new JSON private key for that Service Account.
    4. Create two secrets with the downloaded key (one for the Source, one for the Receive Adapter):
kubectl -n knative-sources create secret generic gcppubsub-source-key --from-file=key.json=PATH_TO_KEY_FILE.json
kubectl -n demo create secret generic google-cloud-key --from-file=key.json=PATH_TO_KEY_FILE.json
  1. Deploy the GcpPubSubSource controller as part of eventing-source's controller.

Note: update project ID before applying source.yaml

kubectl -n demo apply -f source.yaml

Deploying

Create a Channel.

Note, if you changed the names of env vars above, you will need to update the channel.yaml file

kubectl -n demo apply -f channel.yaml

Deploy GcpPubSubSource

Note, update project ID, topic, and channel name before applying source.yaml

kubectl apply -f source.yaml

Even though the Source isn't completely ready yet, we can setup the Subscription for all events coming out of it.

Deploy Subscription.

Note, update channel name before applying source.yaml

kubectl apply -f subscription.yaml

IoT Core

We now have everything setup on the Knative side. We will now setup the IoT Core.

Create a device registry:

gcloud iot registries create $IOTCORE_REGISTRY \
    --project=$IOTCORE_PROJECT \
    --region=$IOTCORE_REGION \
    --event-notification-config=topic=$IOTCORE_TOPIC_DATA \
    --state-pubsub-topic=$IOTCORE_TOPIC_DEVICE

Create the certificates.

openssl req -x509 -nodes -newkey rsa:2048 \
    -keyout device.key.pem \
    -out device.crt.pem \
    -days 365 \
    -subj "/CN=unused"
curl https://pki.google.com/roots.pem > ./root-ca.pem

Register a device using the generated certificates.

gcloud iot devices create $IOTCORE_DEVICE \
  --project=$IOTCORE_PROJECT \
  --region=$IOTCORE_REGION \
  --registry=$IOTCORE_REGISTRY \
  --public-key path=./device.crt.pem,type=rsa-x509-pem

Demo

We now have everything installed and ready to go. We will generate events and see them in the subscriber.

In separate terminal, uUse kail to tail on the message-dumper logs of the subscriber.

kail -d iot-message-dumper-00001-deployment -c user-container

Now in the terminal where you we defined all those env vars, run the following program to generate events.

go run ./generator.go \
  -project $IOTCORE_PROJECT \
  -region $IOTCORE_REGION \
  -registry $IOTCORE_REGISTRY \
  -device $IOTCORE_DEVICE \
  -ca ./root-ca.pem \
  -key ./device.key.pem \
  -src "iot-core demo" \
  -events 10