From 011be2250ae3c69a28fd48fbe1f9b4be51276680 Mon Sep 17 00:00:00 2001 From: Rui Fu Date: Thu, 7 Dec 2023 16:58:48 +0800 Subject: [PATCH] update release 0.17.1 version --- .ci/olm-tests/catalog.yml | 2 +- .ci/olm-tests/subs.yml | 2 +- Makefile | 2 +- README.md | 2 +- charts/function-mesh-operator/Chart.yaml | 2 +- charts/function-mesh-operator/README.md | 2 +- .../function-mesh-operator/charts/admission-webhook/Chart.yaml | 2 +- charts/function-mesh-operator/values.yaml | 2 +- install.sh | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.ci/olm-tests/catalog.yml b/.ci/olm-tests/catalog.yml index 5a7b6867..9b7a2f55 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.17.1-rc-1 + image: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.17.1 diff --git a/.ci/olm-tests/subs.yml b/.ci/olm-tests/subs.yml index e74af2e9..af165c57 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.17.1-rc-1 + startingCSV: function-mesh.v0.17.1 source: my-test-catalog sourceNamespace: olm diff --git a/Makefile b/Makefile index 722e2dd0..17f13ff4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Current Operator version -VERSION ?= 0.17.1-rc-1 +VERSION ?= 0.17.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 36ef482f..4863fadd 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.17.1-rc-1/install.sh | bash +curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.17.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/charts/function-mesh-operator/Chart.yaml b/charts/function-mesh-operator/Chart.yaml index ae4071e3..f6d340b4 100644 --- a/charts/function-mesh-operator/Chart.yaml +++ b/charts/function-mesh-operator/Chart.yaml @@ -24,7 +24,7 @@ version: 0.2.24 # 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 # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.17.1-rc-1 +appVersion: 0.17.1 home: https://github.com/streamnative/function-mesh sources: diff --git a/charts/function-mesh-operator/README.md b/charts/function-mesh-operator/README.md index d81e5d60..0599f79d 100644 --- a/charts/function-mesh-operator/README.md +++ b/charts/function-mesh-operator/README.md @@ -47,7 +47,7 @@ function mesh operator Helm chart for Kubernetes | imagePullPolicy | string | `"IfNotPresent"` | | | imagePullSecrets | list | `[]` | | | installation.namespace | string | `"function-mesh-system"` | | -| operatorImage | string | `"streamnative/function-mesh:v0.17.1-rc-1"` | | +| operatorImage | string | `"streamnative/function-mesh:v0.17.1"` | | | rbac.create | bool | `true` | | ---------------------------------------------- diff --git a/charts/function-mesh-operator/charts/admission-webhook/Chart.yaml b/charts/function-mesh-operator/charts/admission-webhook/Chart.yaml index 7306ce90..eb2ebfe7 100644 --- a/charts/function-mesh-operator/charts/admission-webhook/Chart.yaml +++ b/charts/function-mesh-operator/charts/admission-webhook/Chart.yaml @@ -25,7 +25,7 @@ version: 0.2.24 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: 0.17.1-rc-1 +appVersion: 0.17.1 home: https://github.com/streamnative/function-mesh sources: diff --git a/charts/function-mesh-operator/values.yaml b/charts/function-mesh-operator/values.yaml index 9bdc3eee..c22b8160 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.17.1-rc-1 +operatorImage: streamnative/function-mesh:v0.17.1 imagePullPolicy: IfNotPresent imagePullSecrets: [] diff --git a/install.sh b/install.sh index 16163bc6..d0967325 100755 --- a/install.sh +++ b/install.sh @@ -56,7 +56,7 @@ EOF main() { local local_kube="kind" - local fm_version="v0.17.1-rc-1" + local fm_version="v0.17.1" local kind_name="kind" local kind_version="v0.7.0" local node_num=2