Binding running services to an IoT core
To make the following commands easier, we are going to set the various variables here and use them later.
Variables you must Change
Variables you may Change
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"
Kubernetes
- Have a running Kubernetes cluster with
kubectl
pointing at it.
GCP
Create a Google Cloud Project.
Have installed and pointing at that project.
Enable the
Cloud Pub/Sub API
on that project.gcloud services enable pubsub.googleapis.com
Create the two GCP PubSub
topic
s.gcloud pubsub topics create $IOTCORE_TOPIC_DATA
Setup Knative Eventing.
GCP PubSub Source
Create a GCP Service Account.
Determine the Service Account to use, or create a new one.
Give that Service Account the ‘Pub/Sub Editor’ role on your GCP project.
Create two secrets with the downloaded key (one for the Source, one for the Receive Adapter):
kubectl --namespace knative-sources create secret generic gcppubsub-source-key --from-file=key.json=PATH_TO_KEY_FILE.json
kubectl --namespace default create secret generic google-cloud-key --from-file=key.json=PATH_TO_KEY_FILE.json
Deploy the
GcpPubSubSource
controller as part of eventing-source’s controller.
Broker
Install the default
Broker
.kubectl create -f - <<EOF
apiVersion: eventing.knative.dev/v1
kind: Broker
metadata:
EOF
GCP PubSub Source
Deploy
gcp-pubsub-source.yaml
.sed -e "s/PROJECT_ID/$IOTCORE_PROJECT/" \
-e "s/TOPIC_NAME/$IOTCORE_TOPIC_DATA/" \
docs/eventing/samples/iot-core/gcp-pubsub-source.yaml |
kubectl apply --filename -
Trigger
Even though the Source
isn’t completely ready yet, we can setup the Trigger
for all events coming out of it.
Deploy
trigger.yaml
.kubectl apply --filename docs/eventing/samples/iot-core/trigger.yaml
- This uses a very simple Knative Service to see that events are flowing. Feel free to replace it.
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 \
Create the certificates.
openssl req -x509 -nodes -newkey rsa:2048 \
-keyout device.key.pem \
-out device.crt.pem \
-days 365 \
curl https://pki.google.com/roots.pem > ./root-ca.pem
We now have everything installed and ready to go. We will generate events and see them in the subscriber.
Run the following program to generate events:
go run github.com/knative/docs/docs/eventing/samples/iot-core/generator \
-project $IOTCORE_PROJECT \
-region $IOTCORE_REGION \
-registry $IOTCORE_REGISTRY \
-device $IOTCORE_DEVICE \
-ca "$PWD/root-ca.pem" \
-key "$PWD/device.key.pem" \
-src "iot-core demo" \
-events 10
Inspect the logs of the subscriber:
kubectl logs --selector serving.knative.dev/service=event-display -c user-container
You should see something along the similar to:
{"ID":"481014114648052","Data":"eyJzb3VyY2VfaWQiOiJpb3QtY29yZSBkZW1vIiwiZXZlbnRfaWQiOiJlaWQtMzI3MjJiMzItZWU5Mi00YzZlLWEzOTgtNDlmYjRkYWYyNGE1IiwiZXZlbnRfdHMiOjE1NTM3MTczOTYsIm1ldHJpYyI6MC4xMzY1MjI5OH0=","Attributes":{"deviceId":"iot-demo-client","deviceNumId":"2754785852315736","deviceRegistryId":"iot-demo","deviceRegistryLocation":"us-central1","projectId":"s9-demo","subFolder":""},"PublishTime":"2019-03-27T20:09:56.685Z"}
To cleanup the knative resources:
Remove the
GcpPubSubSource
:sed -e "s/PROJECT_ID/$IOTCORE_PROJECT/" \
-e "s/TOPIC_NAME/$IOTCORE_TOPIC_DATA/" \
docs/eventing/samples/iot-core/gcp-pubsub-source.yaml |
kubectl delete --filename -
Remove the Trigger:
kubectl delete --filename docs/eventing/samples/iot-core/trigger.yaml
Remove the
GcpPubSubSource
controller:
Feedback
Was this page helpful?
Sorry to hear that. Please tell us how we can improve.