From a6b518756af36dc7d035ca5be13a0f2a28b00c72 Mon Sep 17 00:00:00 2001 From: Rui Fu Date: Tue, 22 Mar 2022 08:55:15 +0800 Subject: [PATCH] bump to 0.1.11-rc3 (#342) --- Makefile | 2 +- README.md | 2 +- charts/function-mesh-operator/Chart.yaml | 2 +- charts/function-mesh-operator/values.yaml | 2 +- install.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index db992f41b..b9fc73c96 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Current Operator version -VERSION ?= 0.1.11-rc2 +VERSION ?= 0.1.11-rc3 # Default image tag DOCKER_REPO := $(if $(DOCKER_REPO),$(DOCKER_REPO),streamnative) OPERATOR_IMG ?= ${DOCKER_REPO}/function-mesh:v$(VERSION) diff --git a/README.md b/README.md index 473d28120..3dc4d269b 100644 --- a/README.md +++ b/README.md @@ -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.11-rc2/install.sh | bash +curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.11-rc3/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. diff --git a/charts/function-mesh-operator/Chart.yaml b/charts/function-mesh-operator/Chart.yaml index ed8e31028..1677a1e0c 100644 --- a/charts/function-mesh-operator/Chart.yaml +++ b/charts/function-mesh-operator/Chart.yaml @@ -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.11-rc2 +version: 0.1.11-rc3 # 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 diff --git a/charts/function-mesh-operator/values.yaml b/charts/function-mesh-operator/values.yaml index 6ef106c04..4024d5570 100644 --- a/charts/function-mesh-operator/values.yaml +++ b/charts/function-mesh-operator/values.yaml @@ -11,7 +11,7 @@ installation: namespace: function-mesh-system # operatorImage is Function Mesh Operator image -operatorImage: streamnative/function-mesh:v0.1.11-rc2 +operatorImage: streamnative/function-mesh:v0.1.11-rc3 imagePullPolicy: IfNotPresent imagePullSecrets: [] diff --git a/install.sh b/install.sh index b69c08ef7..9dbe1eab2 100755 --- a/install.sh +++ b/install.sh @@ -56,7 +56,7 @@ EOF main() { local local_kube="kind" - local fm_version="v0.1.11-rc2" + local fm_version="v0.1.11-rc3" local kind_name="kind" local kind_version="v0.7.0" local node_num=2