Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/olm-tests/catalog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ metadata:
namespace: olm
spec:
sourceType: grpc
image: localhost:5000/streamnativeio/function-mesh-catalog:v0.27.2
image: localhost:5000/streamnativeio/function-mesh-catalog:v0.28.0
2 changes: 1 addition & 1 deletion .ci/olm-tests/subs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ metadata:
spec:
channel: alpha
name: function-mesh
startingCSV: function-mesh.v0.27.2
startingCSV: function-mesh.v0.28.0
source: my-test-catalog
sourceNamespace: olm
8 changes: 4 additions & 4 deletions .github/workflows/bundle-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Set up GO 1.25.10
- name: Set up GO 1.25.11
uses: actions/setup-go@v5
with:
go-version: 1.25.10
go-version: 1.25.11
id: go

- name: InstallKubebuilder
Expand Down Expand Up @@ -180,10 +180,10 @@ jobs:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Set up GO 1.25.10
- name: Set up GO 1.25.11
uses: actions/setup-go@v5
with:
go-version: 1.25.10
go-version: 1.25.11
id: go

- name: InstallKubebuilder
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/olm-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
- name: checkout
uses: actions/checkout@v2

- name: Set up GO 1.25.10
- name: Set up GO 1.25.11
uses: actions/setup-go@v5
with:
go-version: 1.25.10
go-version: 1.25.11
id: go

- name: InstallKubebuilder
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.25.10]
go-version: [1.25.11]
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@v1.3.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Set up GO 1.25.10
- name: Set up GO 1.25.11
uses: actions/setup-go@v5
with:
go-version: 1.25.10
go-version: 1.25.11
id: go

- name: InstallKubebuilder
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-helm-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ jobs:
run: hack/kind-cluster-build.sh --name chart-testing -c 1 -v 10 --k8sVersion v1.23.17
if: steps.list-changed.outputs.changed == 'true'

- name: Set up GO 1.25.10
- name: Set up GO 1.25.11
if: steps.list-changed.outputs.changed == 'true'
uses: actions/setup-go@v5
with:
go-version: 1.25.10
go-version: 1.25.11
id: go

- name: setup kubebuilder 3.6.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ jobs:
repository: ${{github.event.pull_request.head.repo.full_name}}
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up GO 1.25.10
- name: Set up GO 1.25.11
uses: actions/setup-go@v5
with:
go-version: 1.25.10
go-version: 1.25.11
id: go

- name: InstallKubebuilder
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trivy_scheduled_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ jobs:
repository: ${{github.event.pull_request.head.repo.full_name}}
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up GO 1.25.10
- name: Set up GO 1.25.11
uses: actions/setup-go@v5
with:
go-version: 1.25.10
go-version: 1.25.11
id: go

- name: InstallKubebuilder
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# Function Mesh v0.28.0 Release Notes

## v0.28.0 What's New

* [Runtime] feat: export DownloadServiceConfig and GeneratePythonLogConfigCommand in #835
* [Runtime] fix: ensure proper shell quoting for parameters in #837
* [Image] Optimize multi-arch docker image build in #838
* [Runtime] feat: add a global flag to enable/disable PauseRollout in #840
* [CI] update Python version to 3.12 in integration test configs in #842
* [Runtime] feat: Support startupProbe in pod policy in #841
* [Runtime] feat: support Kafka protocol for functions in #843

# Function Mesh v0.27.2 Release Notes

## v0.27.2 What's New
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.25.10-trixie AS builder
FROM --platform=$BUILDPLATFORM golang:1.25.11-trixie AS builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
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.27.2
VERSION ?= 0.28.0
# 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.27.2/install.sh | bash
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.28.0/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
6 changes: 3 additions & 3 deletions charts/function-mesh-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ 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.2.42
version: 0.2.43

# 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.27.2
appVersion: 0.28.0

home: https://github.com/streamnative/function-mesh
sources:
Expand All @@ -33,5 +33,5 @@ sources:
dependencies:
- name: admission-webhook
condition: admissionWebhook.enabled
version: 0.2.42
version: 0.2.43
# repository: https://charts.functionmesh.io/
7 changes: 4 additions & 3 deletions charts/function-mesh-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# function-mesh-operator

![Version: 0.2.42](https://img.shields.io/badge/Version-0.2.42-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.27.2](https://img.shields.io/badge/AppVersion-0.27.2-informational?style=flat-square)
![Version: 0.2.43](https://img.shields.io/badge/Version-0.2.43-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.28.0](https://img.shields.io/badge/AppVersion-0.28.0-informational?style=flat-square)

function mesh operator Helm chart for Kubernetes

Expand All @@ -20,7 +20,7 @@ function mesh operator Helm chart for Kubernetes

| Repository | Name | Version |
|------------|------|---------|
| | admission-webhook | 0.2.42 |
| | admission-webhook | 0.2.43 |

## Values

Expand All @@ -41,6 +41,7 @@ function mesh operator Helm chart for Kubernetes
| controllerManager.metrics.scheme | string | `"https"` | |
| controllerManager.namespacedBackendConfig | string | `"backend-config"` | |
| controllerManager.nodeSelector | object | `{}` | |
| controllerManager.pauseRollout | bool | `false` | |
| controllerManager.pprof.enable | bool | `false` | |
| controllerManager.pprof.port | int | `8090` | |
| controllerManager.replicas | int | `1` | |
Expand All @@ -52,7 +53,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.27.2"` | |
| operatorImage | string | `"streamnative/function-mesh:v0.28.0"` | |
| rbac.create | bool | `true` | |

----------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ 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.2.42
version: 0.2.43

# 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.
# It is recommended to use it with quotes.
appVersion: 0.27.2
appVersion: 0.28.0

home: https://github.com/streamnative/function-mesh
sources:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# admission-webhook

![Version: 0.2.42](https://img.shields.io/badge/Version-0.2.42-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.27.2](https://img.shields.io/badge/AppVersion-0.27.2-informational?style=flat-square)
![Version: 0.2.43](https://img.shields.io/badge/Version-0.2.43-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.28.0](https://img.shields.io/badge/AppVersion-0.28.0-informational?style=flat-square)

function mesh admission webhook Helm chart for Kubernetes

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 @@ -11,7 +11,7 @@ installation:
namespace: function-mesh-system

# operatorImage is Function Mesh Operator image
operatorImage: streamnative/function-mesh:v0.27.2
operatorImage: streamnative/function-mesh:v0.28.0
imagePullPolicy: IfNotPresent
imagePullSecrets: []

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.35.1
github.com/prometheus/client_golang v1.20.5
github.com/streamnative/function-mesh/api v0.27.2
github.com/streamnative/function-mesh/api v0.28.0
github.com/streamnative/pulsarctl v0.6.0
github.com/stretchr/testify v1.11.1
google.golang.org/protobuf v1.36.10
Expand Down
2 changes: 1 addition & 1 deletion images/samples/go-function-samples/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PULSAR_IMAGE_TAG
FROM --platform=$BUILDPLATFORM golang:1.25.10-trixie as builder
FROM --platform=$BUILDPLATFORM golang:1.25.11-trixie as builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion images/samples/go-function-samples/func/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/apache/pulsar/pulsar-function-go/examples

go 1.25.10
go 1.25.11

require github.com/apache/pulsar/pulsar-function-go v0.0.0-20250430085326-611dc3f360b5

Expand Down
2 changes: 1 addition & 1 deletion 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 fm_version="v0.27.2"
local fm_version="v0.28.0"
local kind_name="kind"
local kind_version="v0.7.0"
local node_num=2
Expand Down
2 changes: 1 addition & 1 deletion operator.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.25.10-trixie AS builder
FROM --platform=$BUILDPLATFORM golang:1.25.11-trixie AS builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion redhat.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.25.10-trixie as builder
FROM --platform=$BUILDPLATFORM golang:1.25.11-trixie as builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
Loading