Skip to content

Commit 8a4eaca

Browse files
Update release rc version
1 parent fe5a069 commit 8a4eaca

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.ci/olm-tests/catalog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ metadata:
55
namespace: olm
66
spec:
77
sourceType: grpc
8-
image: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.12.0
8+
image: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.13.0-rc-1

.ci/olm-tests/subs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ metadata:
66
spec:
77
channel: alpha
88
name: function-mesh
9-
startingCSV: function-mesh.v0.12.0
9+
startingCSV: function-mesh.v0.13.0-rc-1
1010
source: my-test-catalog
1111
sourceNamespace: olm

Makefile

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

README.md

+1-1
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.12.0/install.sh | bash
7+
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.13.0-rc-1/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

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.2.15
22+
version: 0.2.16
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to
2626
# follow Semantic Versioning. They should reflect the version the application is using.
27-
appVersion: 0.12.0
27+
appVersion: 0.13.0-rc-1
2828

2929
home: https://github.com/streamnative/function-mesh
3030
sources:
@@ -33,5 +33,5 @@ sources:
3333
dependencies:
3434
- name: admission-webhook
3535
condition: admissionWebhook.enabled
36-
version: 0.2.15
36+
version: 0.2.16
3737
# repository: https://charts.functionmesh.io/

charts/function-mesh-operator/charts/admission-webhook/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.2.15
22+
version: 0.2.16
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to
2626
# follow Semantic Versioning. They should reflect the version the application is using.
2727
# It is recommended to use it with quotes.
28-
appVersion: 0.12.0
28+
appVersion: 0.13.0-rc-1
2929

3030
home: https://github.com/streamnative/function-mesh
3131
sources:

charts/function-mesh-operator/values.yaml

+1-1
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.12.0
14+
operatorImage: streamnative/function-mesh:v0.13.0-rc-1
1515
imagePullPolicy: IfNotPresent
1616
imagePullSecrets: []
1717

install.sh

+1-1
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.12.0"
59+
local fm_version="v0.13.0-rc-1"
6060
local kind_name="kind"
6161
local kind_version="v0.7.0"
6262
local node_num=2

0 commit comments

Comments
 (0)