Skip to content

Commit 7b86667

Browse files
committed
bump to v0.2.0
1 parent edd275b commit 7b86667

7 files changed

Lines changed: 43 additions & 5 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Current Operator version
2-
VERSION ?= 0.1.11
2+
VERSION ?= 0.2.0
33
# Default image tag
44
DOCKER_REPO := $(if $(DOCKER_REPO),$(DOCKER_REPO),streamnative)
55
OPERATOR_IMG ?= ${DOCKER_REPO}/function-mesh:v$(VERSION)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Kubernetes-Native way to run pulsar functions, connectors and composed functio
44
## Install
55

66
```bash
7-
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.11/install.sh | bash
7+
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.2.0/install.sh | bash
88
```
99

1010
The above command installs all the CRDs, required service account configuration, and all function-mesh operator components. Before you start running a function-mesh example, verify if Function Mesh is installed correctly.

charts/function-mesh-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 0.1.11
21+
version: 0.2.0
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to

charts/function-mesh-operator/crds/compute.functionmesh.io_functionmeshes.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2580,6 +2580,25 @@ spec:
25802580
type: string
25812581
type: object
25822582
type: object
2583+
statefulConfig:
2584+
properties:
2585+
pulsar:
2586+
properties:
2587+
javaProvider:
2588+
properties:
2589+
className:
2590+
type: string
2591+
config:
2592+
type: object
2593+
required:
2594+
- className
2595+
type: object
2596+
serviceUrl:
2597+
type: string
2598+
required:
2599+
- serviceUrl
2600+
type: object
2601+
type: object
25832602
subscriptionName:
25842603
type: string
25852604
subscriptionPosition:

charts/function-mesh-operator/crds/compute.functionmesh.io_functions.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2577,6 +2577,25 @@ spec:
25772577
type: string
25782578
type: object
25792579
type: object
2580+
statefulConfig:
2581+
properties:
2582+
pulsar:
2583+
properties:
2584+
javaProvider:
2585+
properties:
2586+
className:
2587+
type: string
2588+
config:
2589+
type: object
2590+
required:
2591+
- className
2592+
type: object
2593+
serviceUrl:
2594+
type: string
2595+
required:
2596+
- serviceUrl
2597+
type: object
2598+
type: object
25802599
subscriptionName:
25812600
type: string
25822601
subscriptionPosition:

charts/function-mesh-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ installation:
1111
namespace: function-mesh-system
1212

1313
# operatorImage is Function Mesh Operator image
14-
operatorImage: streamnative/function-mesh:v0.1.11
14+
operatorImage: streamnative/function-mesh:v0.2.0
1515
imagePullPolicy: IfNotPresent
1616
imagePullSecrets: []
1717

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ EOF
5656

5757
main() {
5858
local local_kube="kind"
59-
local fm_version="v0.1.11"
59+
local fm_version="v0.2.0"
6060
local kind_name="kind"
6161
local kind_version="v0.7.0"
6262
local node_num=2

0 commit comments

Comments
 (0)