From 003eadb839595aa96123177bde0b8aab8fcdbe67 Mon Sep 17 00:00:00 2001 From: jiangpengcheng Date: Thu, 7 Nov 2024 16:32:49 +0800 Subject: [PATCH] Update release rc version --- .ci/olm-tests/catalog.yml | 2 +- .ci/olm-tests/subs.yml | 2 +- Makefile | 2 +- README.md | 2 +- install.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/olm-tests/catalog.yml b/.ci/olm-tests/catalog.yml index 18daea8c..1fcf1cd0 100644 --- a/.ci/olm-tests/catalog.yml +++ b/.ci/olm-tests/catalog.yml @@ -5,4 +5,4 @@ metadata: namespace: olm spec: sourceType: grpc - image: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.22.0 + image: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.22.1-rc-1 diff --git a/.ci/olm-tests/subs.yml b/.ci/olm-tests/subs.yml index c476cac6..6aaaa808 100644 --- a/.ci/olm-tests/subs.yml +++ b/.ci/olm-tests/subs.yml @@ -6,6 +6,6 @@ metadata: spec: channel: alpha name: function-mesh - startingCSV: function-mesh.v0.22.0 + startingCSV: function-mesh.v0.22.1-rc-1 source: my-test-catalog sourceNamespace: olm diff --git a/Makefile b/Makefile index 6353b11e..50789e85 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Current Operator version -VERSION ?= 0.22.0 +VERSION ?= 0.22.1-rc-1 # 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 b3775a50..373c86d7 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.22.0/install.sh | bash +curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.22.1-rc-1/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/install.sh b/install.sh index a36e23d3..f23a16e2 100755 --- a/install.sh +++ b/install.sh @@ -56,7 +56,7 @@ EOF main() { local local_kube="kind" - local fm_version="v0.22.0" + local fm_version="v0.22.1-rc-1" local kind_name="kind" local kind_version="v0.7.0" local node_num=2