Skip to content

Commit 09d6211

Browse files
authored
Merge pull request #205 from wrongerror/v0.6
update v0.6 sample links
2 parents 46929ac + 266a501 commit 09d6211

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

content/en/docs/concepts/function_io.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ spec:
6363
value: "false"
6464
```
6565
66-
[Here](https://github.com/OpenFunction/samples/tree/main/functions/async/pubsub/subscriber) is another async function example that use a Kafka Pub/sub component as input.
66+
[Here](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/pubsub/subscriber) is another async function example that use a Kafka Pub/sub component as input.
6767
6868
```yaml
6969
apiVersion: core.openfunction.io/v1beta1
@@ -94,7 +94,7 @@ spec:
9494
value: "autoscaling-subscriber"
9595
```
9696
97-
Sync functions can also send output to Dapr output binding components or Pub/sub components, [here](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding) is an example:
97+
Sync functions can also send output to Dapr output binding components or Pub/sub components, [here](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/with-output-binding) is an example:
9898
9999
```yaml
100100
apiVersion: core.openfunction.io/v1beta1

content/en/docs/concepts/function_signatures.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ As you can see, `OpenFunction` signature is the recommended function signature,
2727

2828
| | HTTP | CloudEvent | OpenFunction |
2929
|-----------|----------------|----------------------|------------------------|
30-
| Go | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-go), [Multi-functions](https://github.com/OpenFunction/samples/tree/main/functions/knative/multiple-functions-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go) | | [Sync function with output binding](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding), [Kafka input & HTTP output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/logs-handler-function), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/cron-input-kafka-output), [Cron input binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/cron-input), [Kafka input binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/kafka-input), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/pubsub) |
31-
| Nodejs | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-node) | | [Sync function with output binding](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding-node), [MQTT binding & pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/mqtt-io-node) |
32-
| Python | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-python) | | |
33-
| Java | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-java) | | |
34-
| DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-dotnet) | | |
30+
| Go | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go) | | [Sync function with output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/with-output-binding), [Kafka input & HTTP output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/logs-handler-function), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/cron-input-kafka-output), [Cron input binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/cron-input), [Kafka input binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/kafka-input), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/pubsub) |
31+
| Nodejs | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-node) | | |
32+
| Python | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-python) | | |
33+
| Java | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-java) | | |
34+
| DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-dotnet) | | |

content/en/docs/getting-started/Quickstarts/async-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Async functions are event-driven and their inputs are usually events from Non-HT
1111

1212
| | Async Functions |
1313
|-----------|-----------------|
14-
| Go | [Kafka input & HTTP output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/logs-handler-function), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/cron-input-kafka-output), [Cron input binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/cron-input), [Kafka input binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/kafka-input), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/pubsub) |
15-
| Nodejs | [MQTT binding & pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/mqtt-io-node) |
14+
| Go | [Kafka input & HTTP output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/logs-handler-function), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/cron-input-kafka-output), [Cron input binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/cron-input), [Kafka input binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/kafka-input), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/pubsub) |
15+
| Nodejs | [MQTT binding & pubsub](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/mqtt-io-node) |
1616
| Python | |
1717
| Java | |
1818
| DotNet | |

content/en/docs/getting-started/Quickstarts/sync-functions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Sync functions are funtions whose inputs are payloads of HTTP requests, and the
1111

1212
| | Sync Functions |
1313
|-----------|----------------|
14-
| Go | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-go), [Multi-functions](https://github.com/OpenFunction/samples/tree/main/functions/knative/multiple-functions-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go), [Sync function with output binding](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding) |
15-
| Nodejs | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-node), [Sync function with output binding](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding-node) |
16-
| Python | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-python) |
17-
| Java | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-java) |
18-
| DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-dotnet) |
14+
| Go | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-go), [Multi-functions](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/multiple-functions-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go), [Sync function with output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/with-output-binding) |
15+
| Nodejs | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-node), [Sync function with output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/with-output-binding-node) |
16+
| Python | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-python) |
17+
| Java | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-java) |
18+
| DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-dotnet) |
1919

2020
> You can find more function samples [here](../../../concepts/function_signatures/#samples)

0 commit comments

Comments
 (0)