Skip to content

Commit d004be9

Browse files
authored
Upgrade version to 0.1.6-rc2 (#213)
* Upgrade version to 0.1.6-rc2 * Update pulsar version
1 parent 01a69b0 commit d004be9

6 files changed

Lines changed: 7 additions & 7 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.6-rc1
2+
VERSION ?= 0.1.6-rc2
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.6-rc1/install.sh | bash
7+
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.6-rc2/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.6-rc1
21+
version: 0.1.6-rc2
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/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rbac:
77
create: true
88

99
# operatorImage is Function Mesh Operator image
10-
operatorImage: streamnative/function-mesh:v0.1.6-rc1
10+
operatorImage: streamnative/function-mesh:v0.1.6-rc2
1111
imagePullPolicy: IfNotPresent
1212
imagePullSecrets: []
1313

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.6-rc1"
59+
local fm_version="v0.1.6-rc2"
6060
local kind_name="kind"
6161
local kind_version="v0.7.0"
6262
local node_num=2

mesh-worker-service/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626

2727
<groupId>io.functionmesh.proxy</groupId>
2828
<artifactId>mesh-worker-service</artifactId>
29-
<version>v0.1.6-rc1</version>
29+
<version>v0.1.6-rc2</version>
3030

3131
<properties>
32-
<pulsar.version>2.8.0-rc-202106091215</pulsar.version>
32+
<pulsar.version>2.8.0-rc-202106151929</pulsar.version>
3333
<lombok.version>1.18.16</lombok.version>
3434
<log4j2.version>2.14.0</log4j2.version>
3535
<kubernetes-client.version>10.0.1</kubernetes-client.version>

0 commit comments

Comments
 (0)