Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
VERSION ?= 0.1.7-rc1
# 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/install.sh | bash
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.7-rc1/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
version: 0.1.7-rc1

# 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
operatorImage: streamnative/function-mesh:v0.1.7-rc1
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"
local fm_version="v0.1.7-rc1"
local kind_name="kind"
local kind_version="v0.7.0"
local node_num=2
Expand Down
2 changes: 1 addition & 1 deletion mesh-worker-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

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

<properties>
<pulsar.version>2.8.0.7</pulsar.version>
Expand Down