https://github.com/streamnative/kubevela-function-mesh-addon
Provides users with OAM protocol-compliant (KubeVela) application-level Serverless orchestration capabilities based on Function Mesh
https://github.com/streamnative/kubevela-function-mesh-addon
Last synced: 4 months ago
JSON representation
Provides users with OAM protocol-compliant (KubeVela) application-level Serverless orchestration capabilities based on Function Mesh
- Host: GitHub
- URL: https://github.com/streamnative/kubevela-function-mesh-addon
- Owner: streamnative
- License: apache-2.0
- Created: 2023-01-17T16:30:49.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T05:56:05.000Z (about 3 years ago)
- Last Synced: 2025-07-14T00:59:54.054Z (7 months ago)
- Language: CUE
- Size: 10.7 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Function Mesh addon for KubeVela
The purpose of the Function Mesh addon is to provide serverless capabilities based on Function Mesh for the users of OAM applications.
## Install
Function Mesh is a serverless framework purpose-built for stream processing applications. It brings powerful event-streaming capabilities to your applications by orchestrating multiple [Pulsar Functions](https://functionmesh.io/docs/functions/function-overview) and [Pulsar IO connectors](https://functionmesh.io/docs/connectors/pulsar-io-overview) for complex stream processing jobs.
### Prerequisites
Before using this addon, ensure to perform the following operations.
- Kubernetes server v1.19 or higher.
- KubeVela v1.4 or higher
- Apache Pulsar cluster 2.9.* or higher.
- Follow this [docs](https://pulsar.apache.org/docs/next/getting-started-helm/) to install Pulsar
- Or you can choose the [Pulsar Operator](https://docs.streamnative.io/operators/pulsar-operator/pulsar-operator-install) provided by StreamNative
- Cert-Manager (Use the command `vela addon enable cert-manager` to install it)
- FluxCD (Use the command `vela addon enable fluxcd` to install it)
### Enable the addon
> Currently this addon is only supported for local installation, you need to go into the repository directory and execute the following command
```shell
vela addon enable .
```
You need to manually create a configuration file for accessing the Pulsar cluster
> You need to update the value of `.pulsar.pulsarConfig` in Meshes Component with ``
```yaml
apiVersion: v1
kind: ConfigMap
metadata:
name:
namespace:
data:
webServiceURL: http://sn-platform-pulsar-broker.default.svc.cluster.local:8080 # this is an example
brokerServiceURL: pulsar://sn-platform-pulsar-broker.default.svc.cluster.local:6650 # this is an example
```
## Demo