Skip to content

Commit e4efc7f

Browse files
committed
Update the blog to address review comments
Signed-off-by: Vivek Singh <[email protected]>
1 parent c63fa24 commit e4efc7f

File tree

1 file changed

+27
-21
lines changed

1 file changed

+27
-21
lines changed

_posts/2020-07-08-event-driven-functions-with-openfaas-and-nats.md

+27-21
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dark_background: true
1212
---
1313

1414
In this blog post, I will show how you can invoke OpenFaaS function in response to messages sent on NATS topics in publish-subscribe model.
15-
OpenFaaS functions are accessible over HTTP endpoints via gateway service but OpenFaaS provides several other way to invoke OpenFaaS functions with help of [connector-sdk](https://github.com/openfaas-incubator/connector-sdk). 
15+
OpenFaaS functions are accessible over HTTP endpoints via gateway service but OpenFaaS provides several other way to invoke OpenFaaS functions with help of the [connector-sdk](https://github.com/openfaas-incubator/connector-sdk).The connector sdk provides a reusable and tested interface and implementation that allows developers to quickly create a new event source. The code that is unique to OpenFaaS is standardized so that the develop can focus on the details of the receiving message from the event source.
1616

1717
* [kafka-connector](https://github.com/openfaas-incubator/kafka-connector) connects OpenFaaS functions to Kafka topics.
1818
* [nats-connector](https://github.com/openfaas-incubator/nats-connector) an OpenFaaS event-connector to trigger functions from NATS. 
@@ -24,17 +24,14 @@ There are several other connectors which allows you to trigger OpenFaaS function
2424

2525
## NATS
2626

27-
[NATS](https://nats.io) is a simple, secure and high performance open source messaging system for cloud native applications, IoT messaging, and microservices architectures. In this blog post, I will be using NATS publish-subscribe concept where publishers publishes a message on a topic/subject and subscribers consumes that message by subscribing to that topic/subject.
27+
[NATS](https://nats.io) is a simple, secure and high performance open source messaging system for cloud native applications, IoT messaging, and microservices architectures. In this blog post, I will be using NATS publish-subscribe concept where publishers publishes a message on a topic/subject and subscribers consumes that message by subscribing to that subject (sometimes called topics in other event systems).
2828

2929
![NATS Publish Subscribe](/images/2020-openfaas-nats/nats-publish-subscribe.png "https://docs.nats.io/nats-concepts/pubsub")
3030

3131
## Pre-requisite Installation
3232

3333
* [k3d](https://github.com/rancher/k3d) to create a [k3s](https://github.com/rancher/k3s) cluster. k3s is lightweight distribution of kubernetes from Rancher Labs.
34-
* `kubectl` to manage kubernetes cluster.
35-
* `helm` to install `nats-connector` using helm chart
36-
* [arkade](https://github.com/alexellis/arkade) to install OpenFaaS. `arkade` is simple CLI tool to install helm charts and apps to your cluster in one command.
37-
* [faas-cli](https://github.com/openfaas/faas-cli) CLI tool to manage OpenFaaS functions.
34+
* [arkade](https://github.com/alexellis/arkade) to install OpenFaaS, nats-connector, kubectl and faas-cl. `arkade` is simple CLI tool to install helm charts and apps to your cluster in one command.
3835

3936
> Please make sure you have these tools installed before you proceed next.
4037
@@ -57,19 +54,26 @@ Install OpenFaaS using `arkade`
5754
arkade install openfaas --set basic_auth=true --set functionNamespace=openfaas-fn
5855
```
5956

60-
Follow instructions printed to obtain the gateway password and login with `faas-cli`
61-
62-
#### Install NATS connector using helm chart
57+
#### Install NATS connector using arkade
6358
`nats-connector` is connector which invokes OpenFaaS function when a message is sent to a NATS topic.
6459

6560
```
66-
helm repo add nats-connector https://openfaas.github.io/faas-netes
61+
arkade install nats-connector
62+
```
63+
64+
> NATS comes with OpenFaaS installation, so we are not setting up NATS here
65+
66+
#### Install kubectl and faas-cli
6767

68-
helm install nats-connector openfaas/nats-connector --namespace=openfaas
68+
install `kubectl` and `faas-cli` using `arkade` if they are not already installed.
6969

70+
```
71+
arkade get kubectl
7072
```
7173

72-
> NATS comes with OpenFaaS installation, so we are not setting up NATS here
74+
```
75+
arkade get faas-cli
76+
```
7377

7478
#### Login to OpenFaaS gateway using CLI
7579

@@ -102,29 +106,30 @@ echo -n $PASSWORD | faas-cli login --username admin --password-stdin
102106
Deploy `receive-message` function
103107

104108
```
105-
faas-cli deploy --name receive-message --image openfaas/receive-message:latest --fprocess='./handler' --annotation topic="nats-test"
109+
faas-cli deploy --name receive-message --image openfaas/receive-message:latest \
110+
--fprocess='./handler' --annotation topic="nats-test"
106111
```
107112

108113
Deploy `publish-message` function
109114
```
110-
faas-cli deploy --name publish-message --image openfaas/publish-message:latest --fprocess='./handler' --env nats_url=nats://nats.openfaas:4222
115+
faas-cli deploy --name publish-message --image openfaas/publish-message:latest \
116+
--fprocess='./handler' --env nats_url=nats://nats.openfaas:4222
111117
```
112118

113119
> Note: You can also build and deploy this function using the stack.yml and code present in nats-connector repository. But for simplicity, I am using pre built and published images of these functions.
114120
121+
## Verify the installation
115122
Invoke `publish-message` function to publish a test message
116123

117124
```
118-
faas-cli invoke publish-message <<< "test message"
125+
echo "test message" | faas-cli invoke publish-message
119126
```
120127

121128
When `publish-message` was invoked, it would have pushed `test-message` to the `nats-test` topic on NATS, which would have invoked `receive-message`. We can verify that by checking logs of `receive-message` function.
122129

123130
```
124131
faas-cli logs receive-message
125132
126-
ARNING! Communication is not secure, please consider using HTTPS. Letsencrypt.org offers free SSL/TLS certificates.
127-
Handling connection for 8080
128133
2020-05-29T15:41:17Z 2020/05/29 15:41:17 Started logging stderr from function.
129134
2020-05-29T15:41:17Z 2020/05/29 15:41:17 Started logging stdout from function.
130135
2020-05-29T15:41:17Z Forking - ./handler []
@@ -137,10 +142,11 @@ Handling connection for 8080
137142
2020-05-29T15:42:24Z 2020/05/29 15:42:24 POST / - 200 OK - ContentLength: 28
138143
```
139144

140-
### What Next ?
145+
## What Next ?
146+
* Do you have a cool "event driven" use case you want to share? Let us know and become a guest blogger!
141147

142-
If you are new to OpenFaaS, I would recommend you trying [OpenFaaS workshop](https://github.com/openfaas/workshop) .
148+
* If you are new to OpenFaaS, I would recommend you trying [OpenFaaS workshop](https://github.com/openfaas/workshop) .
143149

144-
If you don't find connector for messaging platform you are using, checkout the [connector-sdk](https://github.com/openfaas-incubator/connector-sdk) which allows you to build event-connectors for OpenFaaS.
150+
* If you don't find connector for messaging platform you are using, checkout the [connector-sdk](https://github.com/openfaas-incubator/connector-sdk) which allows you to build event-connectors for OpenFaaS.
145151

146-
If you are looking to contribute to open source project, please join OpenFaaS community [slack channel](https://docs.openfaas.com/community/) and start contributing.
152+
* If you are looking to contribute to open source project, please join OpenFaaS community [slack channel](https://docs.openfaas.com/community/) and start contributing.

0 commit comments

Comments
 (0)