diff --git a/config.toml b/config.toml index d208d255..340c94a7 100644 --- a/config.toml +++ b/config.toml @@ -101,14 +101,14 @@ archived_version = false # The version number for the version of the docs represented in this doc set. # Used in the "version-banner" partial to display a version number for the # current doc set. -version = "0.6" +version = "0.7" # A link to latest version of the docs. Used in the "version-banner" partial to # point people to the main doc site. url_latest_version = "/docs" [[params.versions]] - version = "v0.7 (latest)" + version = "v0.7" url = "/docs" [[params.versions]] diff --git a/content/en/docs/_index.md b/content/en/docs/_index.md index cbf0d351..10d33498 100644 --- a/content/en/docs/_index.md +++ b/content/en/docs/_index.md @@ -1,5 +1,5 @@ --- -title: "v0.7 (latest)" +title: "v0.7" linkTitle: "Docs" weight: 20 --- diff --git a/content/en/docs/concepts/function_signatures.md b/content/en/docs/concepts/function_signatures.md index 5c0a8cce..a2e4073f 100644 --- a/content/en/docs/concepts/function_signatures.md +++ b/content/en/docs/concepts/function_signatures.md @@ -30,5 +30,5 @@ As you can see, `OpenFunction` signature is the recommended function signature, | 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), [Sync function with path parameters](https://github.com/OpenFunction/samples/tree/main/functions/knative/path-parameters-function-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go) | [Sync function with path parameters](https://github.com/OpenFunction/samples/tree/main/functions/knative/path-parameters-function-go) | [Sync function with path parameters](https://github.com/OpenFunction/samples/tree/main/functions/knative/path-parameters-function-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) | | 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) | | Python | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-python) | | | -| Java | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-java) | | | +| Java | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/java/hello-world) | [CloudEvent](https://github.com/OpenFunction/samples/tree/main/functions/knative/java/cloudevent) | [Sync function with output](https://github.com/OpenFunction/samples/tree/main/functions/knative/java/with-output-binding), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/java/cron-input-kafka-output), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/java/pubsub) | | DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-dotnet) | | | \ No newline at end of file diff --git a/content/en/docs/getting-started/Quickstarts/async-functions.md b/content/en/docs/getting-started/Quickstarts/async-functions.md index 805364aa..0cb0c750 100644 --- a/content/en/docs/getting-started/Quickstarts/async-functions.md +++ b/content/en/docs/getting-started/Quickstarts/async-functions.md @@ -14,7 +14,7 @@ Async functions are event-driven and their inputs are usually events from Non-HT | 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) | | Nodejs | [MQTT binding & pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/mqtt-io-node) | | Python | | -| Java | | +| Java | [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/java/cron-input-kafka-output), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/java/pubsub) | | DotNet | | > You can find more function samples [here](../../../concepts/function_signatures/#samples) \ No newline at end of file diff --git a/content/en/docs/getting-started/Quickstarts/sync-functions.md b/content/en/docs/getting-started/Quickstarts/sync-functions.md index b0373b57..23ef3ebc 100644 --- a/content/en/docs/getting-started/Quickstarts/sync-functions.md +++ b/content/en/docs/getting-started/Quickstarts/sync-functions.md @@ -14,7 +14,7 @@ Sync functions are funtions whose inputs are payloads of HTTP requests, and the | 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), [Sync function with path parameters](https://github.com/OpenFunction/samples/tree/main/functions/knative/path-parameters-function-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) | | 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) | | Python | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-python) | -| Java | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-java) | +| Java | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/java/hello-world), [Sync function with output](https://github.com/OpenFunction/samples/tree/main/functions/knative/java/with-output-binding) | | DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-dotnet) | > You can find more function samples [here](../../../concepts/function_signatures/#samples) \ No newline at end of file diff --git a/content/en/docs/getting-started/installation.md b/content/en/docs/getting-started/installation.md index 5e47853c..ebe262bc 100644 --- a/content/en/docs/getting-started/installation.md +++ b/content/en/docs/getting-started/installation.md @@ -41,25 +41,25 @@ Now you can install OpenFunction and all its dependencies with helm charts. - Install all components: ```shell kubectl create namespace openfunction - helm install openfunction openfunction/openfunction -n openfunction + helm install openfunction openfunction/openfunction -n openfunction --version 0.2.0 ``` - Install Serving only (without build): ```shell kubectl create namespace openfunction - helm install openfunction --set global.ShipwrightBuild.enabled=false --set global.TektonPipelines.enabled=false openfunction/openfunction -n openfunction + helm install openfunction --set global.ShipwrightBuild.enabled=false --set global.TektonPipelines.enabled=false openfunction/openfunction -n openfunction --version 0.2.0 ``` - Install Knative sync runtime only: ```shell kubectl create namespace openfunction - helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction + helm install openfunction --set global.Keda.enabled=false openfunction/openfunction -n openfunction --version 0.2.0 ``` - Install OpenFunction async runtime only: ```shell kubectl create namespace openfunction - helm install openfunction --set global.Contour.enabled=false --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction + helm install openfunction --set global.Contour.enabled=false --set global.KnativeServing.enabled=false openfunction/openfunction -n openfunction --version 0.2.0 ``` {{% alert title="Note" color="success" %}}