Skip to content

Commit

Permalink
bump to v0.1.5-rc18 (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
freeznet authored Jun 7, 2021
1 parent ef25a31 commit 5444b8e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 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.5-rc17
VERSION ?= 0.1.5-rc18
# 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.5-rc17/install.sh | bash
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.5-rc18/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
5 changes: 5 additions & 0 deletions bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,8 @@ sed -i.bak -E "s/(fm_version\=)(.+)/\1\"$NEW_VERSION\"/" install.sh

# change README.md
sed -i.bak -E "s/(.+)v(.+)(\/install.sh)/\1v$NEW_VERSION\3/" README.md

# change mesh worker service
pushd mesh-worker-service
mvn versions:set -DnewVersion=v$NEW_VERSION
popd
2 changes: 1 addition & 1 deletion charts/function-mesh-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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.5-rc17
version: 0.1.5-rc18

# 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.5-rc17
operatorImage: streamnative/function-mesh:v0.1.5-rc18
imagePullPolicy: IfNotPresent
imagePullSecrets: []

Expand Down
8 changes: 4 additions & 4 deletions 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 cm_version="v0.1.4"
local fm_version="0.1.5-rc18"
local kind_name="kind"
local kind_version="v0.7.0"
local node_num=2
Expand Down Expand Up @@ -86,7 +86,7 @@ main() {
shift
;;
-v | --version)
cm_version="$2"
fm_version="0.1.5-rc18"
shift
shift
;;
Expand Down Expand Up @@ -180,7 +180,7 @@ main() {
# fi

if [ "${crd}" == "" ]; then
crd="https://github.com/streamnative/function-mesh/releases/download/${cm_version}/crd.yaml"
crd="https://github.com/streamnative/function-mesh/releases/download/${fm_version}/crd.yaml"
fi

need_cmd "sed"
Expand All @@ -200,7 +200,7 @@ main() {
fi

check_kubernetes
install_function_mesh "${release_name}" "${namespace}" "${crd}" "${runtime}" "${cm_version}" "${docker_registry}"
install_function_mesh "${release_name}" "${namespace}" "${crd}" "${runtime}" "${fm_version}" "${docker_registry}"
ensure_pods_ready "${namespace}" "app.kubernetes.io/component=controller-manager" 100
printf "Function Mesh %s is installed successfully\n" "${release_name}"
}
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.5-SNAPSHOT</version>
<version>v0.1.5-rc18</version>

<properties>
<pulsar.version>2.8.0-rc-202105140121</pulsar.version>
Expand Down

0 comments on commit 5444b8e

Please sign in to comment.