Skip to content

Commit

Permalink
Upgrade version to 0.1.6-rc2 (#213)
Browse files Browse the repository at this point in the history
* Upgrade version to 0.1.6-rc2

* Update pulsar version
  • Loading branch information
tuteng authored Jun 18, 2021
1 parent 01a69b0 commit d004be9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Current Operator version
VERSION ?= 0.1.6-rc1
VERSION ?= 0.1.6-rc2
# Default image tag
DOCKER_REPO := $(if $(DOCKER_REPO),$(DOCKER_REPO),streamnative)
OPERATOR_IMG ?= ${DOCKER_REPO}/function-mesh:v$(VERSION)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A Kubernetes-Native way to run pulsar functions, connectors and composed functio
## Install

```bash
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.6-rc1/install.sh | bash
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.6-rc2/install.sh | bash
```

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.
Expand Down
2 changes: 1 addition & 1 deletion charts/function-mesh-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.6-rc1
version: 0.1.6-rc2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/function-mesh-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ rbac:
create: true

# operatorImage is Function Mesh Operator image
operatorImage: streamnative/function-mesh:v0.1.6-rc1
operatorImage: streamnative/function-mesh:v0.1.6-rc2
imagePullPolicy: IfNotPresent
imagePullSecrets: []

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ EOF

main() {
local local_kube="kind"
local fm_version="v0.1.6-rc1"
local fm_version="v0.1.6-rc2"
local kind_name="kind"
local kind_version="v0.7.0"
local node_num=2
Expand Down
4 changes: 2 additions & 2 deletions mesh-worker-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@

<groupId>io.functionmesh.proxy</groupId>
<artifactId>mesh-worker-service</artifactId>
<version>v0.1.6-rc1</version>
<version>v0.1.6-rc2</version>

<properties>
<pulsar.version>2.8.0-rc-202106091215</pulsar.version>
<pulsar.version>2.8.0-rc-202106151929</pulsar.version>
<lombok.version>1.18.16</lombok.version>
<log4j2.version>2.14.0</log4j2.version>
<kubernetes-client.version>10.0.1</kubernetes-client.version>
Expand Down

0 comments on commit d004be9

Please sign in to comment.