Skip to content

Commit 713229d

Browse files
committed
release v0.26.0-rc.1
1 parent 3e8ee06 commit 713229d

File tree

14 files changed

+111
-41
lines changed

14 files changed

+111
-41
lines changed

.ci/olm-tests/catalog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ metadata:
55
namespace: olm
66
spec:
77
sourceType: grpc
8-
image: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.25.1
8+
image: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.26.0-rc.1

.ci/olm-tests/subs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ metadata:
66
spec:
77
channel: alpha
88
name: function-mesh
9-
startingCSV: function-mesh.v0.25.1
9+
startingCSV: function-mesh.v0.26.0-rc.1
1010
source: my-test-catalog
1111
sourceNamespace: olm

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Current Operator version
2-
VERSION ?= 0.25.1
2+
VERSION ?= 0.26.0-rc.1
33
# Default image tag
44
DOCKER_REPO := $(if $(DOCKER_REPO),$(DOCKER_REPO),streamnative)
55
OPERATOR_IMG ?= ${DOCKER_REPO}/function-mesh:v$(VERSION)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Kubernetes-Native way to run pulsar functions, connectors and composed functio
44
## Install
55

66
```bash
7-
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.25.1/install.sh | bash
7+
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.26.0-rc.1/install.sh | bash
88
```
99

1010
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.

charts/function-mesh-operator/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.2.35
22+
version: 0.2.36
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to
2626
# follow Semantic Versioning. They should reflect the version the application is using.
27-
appVersion: 0.25.1
27+
appVersion: 0.26.0-rc.1
2828

2929
home: https://github.com/streamnative/function-mesh
3030
sources:
@@ -33,5 +33,5 @@ sources:
3333
dependencies:
3434
- name: admission-webhook
3535
condition: admissionWebhook.enabled
36-
version: 0.2.35
36+
version: 0.2.36
3737
# repository: https://charts.functionmesh.io/

charts/function-mesh-operator/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# function-mesh-operator
22

3-
![Version: 0.2.35](https://img.shields.io/badge/Version-0.2.35-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.25.1](https://img.shields.io/badge/AppVersion-0.25.1-informational?style=flat-square)
3+
![Version: 0.2.36](https://img.shields.io/badge/Version-0.2.36-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.26.0-rc.1](https://img.shields.io/badge/AppVersion-0.26.0--rc.1-informational?style=flat-square)
44

55
function mesh operator Helm chart for Kubernetes
66

@@ -20,13 +20,14 @@ function mesh operator Helm chart for Kubernetes
2020

2121
| Repository | Name | Version |
2222
|------------|------|---------|
23-
| | admission-webhook | 0.2.33 |
23+
| | admission-webhook | 0.2.36 |
2424

2525
## Values
2626

2727
| Key | Type | Default | Description |
2828
|-----|------|---------|-------------|
2929
| admissionWebhook.enabled | bool | `true` | |
30+
| controllerManager.addDefaultAffinity | bool | `true` | |
3031
| controllerManager.affinity | object | `{}` | |
3132
| controllerManager.autoFailover | bool | `true` | |
3233
| controllerManager.configFile | string | `"/etc/config/config.yaml"` | |
@@ -37,6 +38,7 @@ function mesh operator Helm chart for Kubernetes
3738
| controllerManager.globalBackendConfigNamespace | string | `"default"` | |
3839
| controllerManager.healthProbe.port | int | `8000` | |
3940
| controllerManager.metrics.port | int | `8443` | |
41+
| controllerManager.metrics.scheme | string | `"https"` | |
4042
| controllerManager.namespacedBackendConfig | string | `"backend-config"` | |
4143
| controllerManager.nodeSelector | object | `{}` | |
4244
| controllerManager.pprof.enable | bool | `false` | |
@@ -50,7 +52,7 @@ function mesh operator Helm chart for Kubernetes
5052
| imagePullPolicy | string | `"IfNotPresent"` | |
5153
| imagePullSecrets | list | `[]` | |
5254
| installation.namespace | string | `"function-mesh-system"` | |
53-
| operatorImage | string | `"streamnative/function-mesh:v0.25.1"` | |
55+
| operatorImage | string | `"streamnative/function-mesh:v0.26.0-rc.1"` | |
5456
| rbac.create | bool | `true` | |
5557

5658
----------------------------------------------

charts/function-mesh-operator/charts/admission-webhook/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.2.35
22+
version: 0.2.36
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to
2626
# follow Semantic Versioning. They should reflect the version the application is using.
2727
# It is recommended to use it with quotes.
28-
appVersion: 0.25.1
28+
appVersion: 0.26.0-rc.1
2929

3030
home: https://github.com/streamnative/function-mesh
3131
sources:

charts/function-mesh-operator/charts/admission-webhook/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# admission-webhook
22

3-
![Version: 0.2.35](https://img.shields.io/badge/Version-0.2.35-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.25.1](https://img.shields.io/badge/AppVersion-0.25.1-informational?style=flat-square)
3+
![Version: 0.2.36](https://img.shields.io/badge/Version-0.2.36-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.26.0-rc.1](https://img.shields.io/badge/AppVersion-0.26.0--rc.1-informational?style=flat-square)
44

55
function mesh admission webhook Helm chart for Kubernetes
66

charts/function-mesh-operator/charts/admission-webhook/templates/crd-compute.functionmesh.io-functionmeshes.yaml

Lines changed: 48 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,12 @@ spec:
198198
type: object
199199
java:
200200
properties:
201+
entryClass:
202+
type: string
201203
extraDependenciesDir:
202204
type: string
205+
instancePath:
206+
type: string
203207
jar:
204208
type: string
205209
jarLocation:
@@ -3710,8 +3714,42 @@ spec:
37103714
type: object
37113715
showPreciseParallelism:
37123716
type: boolean
3717+
sinkConfig:
3718+
properties:
3719+
className:
3720+
type: string
3721+
configs:
3722+
type: object
3723+
x-kubernetes-preserve-unknown-fields: true
3724+
sinkType:
3725+
type: string
3726+
typeClassName:
3727+
type: string
3728+
type: object
37133729
skipToLatest:
37143730
type: boolean
3731+
sourceConfig:
3732+
properties:
3733+
batchSourceConfig:
3734+
properties:
3735+
discoveryTriggererClassName:
3736+
type: string
3737+
discoveryTriggererConfig:
3738+
type: object
3739+
x-kubernetes-preserve-unknown-fields: true
3740+
required:
3741+
- discoveryTriggererClassName
3742+
type: object
3743+
className:
3744+
type: string
3745+
configs:
3746+
type: object
3747+
x-kubernetes-preserve-unknown-fields: true
3748+
sourceType:
3749+
type: string
3750+
typeClassName:
3751+
type: string
3752+
type: object
37153753
statefulConfig:
37163754
properties:
37173755
pulsar:
@@ -4151,8 +4189,12 @@ spec:
41514189
type: object
41524190
java:
41534191
properties:
4192+
entryClass:
4193+
type: string
41544194
extraDependenciesDir:
41554195
type: string
4196+
instancePath:
4197+
type: string
41564198
jar:
41574199
type: string
41584200
jarLocation:
@@ -7590,21 +7632,8 @@ spec:
75907632
showPreciseParallelism:
75917633
type: boolean
75927634
sinkConfig:
7593-
properties:
7594-
archive:
7595-
type: string
7596-
builtin:
7597-
type: string
7598-
className:
7599-
type: string
7600-
configs:
7601-
additionalProperties: {}
7602-
type: object
7603-
sinkType:
7604-
type: string
7605-
typeClassName:
7606-
type: string
76077635
type: object
7636+
x-kubernetes-preserve-unknown-fields: true
76087637
sinkType:
76097638
type: string
76107639
statefulConfig:
@@ -7763,8 +7792,12 @@ spec:
77637792
type: string
77647793
java:
77657794
properties:
7795+
entryClass:
7796+
type: string
77667797
extraDependenciesDir:
77677798
type: string
7799+
instancePath:
7800+
type: string
77687801
jar:
77697802
type: string
77707803
jarLocation:
@@ -11259,19 +11292,8 @@ spec:
1125911292
showPreciseParallelism:
1126011293
type: boolean
1126111294
sourceConfig:
11262-
properties:
11263-
archive:
11264-
type: string
11265-
builtin:
11266-
type: string
11267-
className:
11268-
type: string
11269-
configs:
11270-
additionalProperties: {}
11271-
type: object
11272-
typeClassName:
11273-
type: string
1127411295
type: object
11296+
x-kubernetes-preserve-unknown-fields: true
1127511297
sourceType:
1127611298
type: string
1127711299
statefulConfig:

charts/function-mesh-operator/charts/admission-webhook/templates/crd-compute.functionmesh.io-functions.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,12 @@ spec:
217217
type: object
218218
java:
219219
properties:
220+
entryClass:
221+
type: string
220222
extraDependenciesDir:
221223
type: string
224+
instancePath:
225+
type: string
222226
jar:
223227
type: string
224228
jarLocation:
@@ -3729,8 +3733,42 @@ spec:
37293733
type: object
37303734
showPreciseParallelism:
37313735
type: boolean
3736+
sinkConfig:
3737+
properties:
3738+
className:
3739+
type: string
3740+
configs:
3741+
type: object
3742+
x-kubernetes-preserve-unknown-fields: true
3743+
sinkType:
3744+
type: string
3745+
typeClassName:
3746+
type: string
3747+
type: object
37323748
skipToLatest:
37333749
type: boolean
3750+
sourceConfig:
3751+
properties:
3752+
batchSourceConfig:
3753+
properties:
3754+
discoveryTriggererClassName:
3755+
type: string
3756+
discoveryTriggererConfig:
3757+
type: object
3758+
x-kubernetes-preserve-unknown-fields: true
3759+
required:
3760+
- discoveryTriggererClassName
3761+
type: object
3762+
className:
3763+
type: string
3764+
configs:
3765+
type: object
3766+
x-kubernetes-preserve-unknown-fields: true
3767+
sourceType:
3768+
type: string
3769+
typeClassName:
3770+
type: string
3771+
type: object
37343772
statefulConfig:
37353773
properties:
37363774
pulsar:

0 commit comments

Comments
 (0)