Skip to content
Snippets Groups Projects
Commit 8bdaca9e authored by Alex Ellis (OpenFaaS Ltd)'s avatar Alex Ellis (OpenFaaS Ltd)
Browse files

Update notes in values.yaml

parent dc6d4679
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,8 @@ The [Kafka connector](https://docs.openfaas.com/openfaas-pro/introduction) bring
[Aiven](https://aiven.io/) and [Confluent Cloud](https://confluent.cloud/) have both been tested with the Kafka Connector.
Other versions of Kafka like Redpanda should work out of the box.
## Complete walk-through guide
You can continue with this guide, or start the [walk-through](quickstart.md) for testing purposes.
......@@ -51,6 +53,7 @@ $ helm upgrade kafka-connector openfaas/kafka-connector \
> The above command will also update your helm repo to pull in any new releases.
## Install a development version
```sh
$ helm upgrade kafka-connector ./chart/kafka-connector \
--install \
......@@ -74,7 +77,7 @@ Additional kafka-connector options in `values.yaml`.
| Parameter | Description | Default |
| ------------------------ | -------------------------------------------------------------------------------------- | ------------------------------ |
| `topics` | Topics to which the connector will bind, provide as a comma-separated list. | `faas-request` |
| `topics` | Topics to which the connector will bind, provide as a comma-separated list or a single item. | `faas-request` |
| `brokerHost` | location of the Kafka brokers. | `kafka` |
| `asyncInvocation` | For long running or slow functions, offload to asychronous function invocations and carry on processing the stream | `false` |
| `upstreamTimeout` | Maximum timeout for upstream function call, must be a Go formatted duration string. | `2m` |
......
......@@ -21,7 +21,9 @@ rebuildInterval: 30s
# Use with slow consumers or long running functions
asyncInvocation: false
# Alter to the topics required
# Set either a single topic, or multiple with a comma separating each
# topics: payment.requested
# topics: payment.requested,customer.created,invoice.generated
topics: faas-request
# Your Kafka broker
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment