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
7 changes: 7 additions & 0 deletions CHANGLOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v2.6.0 / 2025-06-30

### Enhancements

- update actions/cache to v4 (#293) @wanjunlei
- update template (#296) @wanjunlei

## v2.5.2 / 2024-05-14

### Enhancements
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ We assume you already have a Kubernetes cluster (v1.16+). You can install one us

```shell
# Deploy CRDs and the Notification Manager Operator:
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/bundle.yaml
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.6.0/bundle.yaml
# Deploy default template:
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/template.yaml
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.6.0/template.yaml
# Deploy built-in language packs.
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/zh-cn.yaml
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.6.0/zh-cn.yaml
```

#### Install with helm
Expand All @@ -103,7 +103,7 @@ ensures a deployment meeting the resource requirements is running.
We should create a NotificationManager CR first, skip this when using helm install.

```shell
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/notification_manager.yaml
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.6.0/notification_manager.yaml
```

### Configure sender
Expand Down
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ This page describes the release process and the currently planned schedule for u
| v2.5.0 | 2024-03-21 | leiwanjun (GitHub: @leiwanjun) |
| v2.5.1 | 2024-04-03 | leiwanjun (GitHub: @leiwanjun) |
| v2.5.2 | 2024-04-14 | leiwanjun (GitHub: @leiwanjun) |
| v2.6.0 | 2025-06-30 | Gentleelephant (GitHub: @Gentleelephant) |

# How to cut a new release

Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 2.5.0
appVersion: 2.6.0
description: Notification Manager manages notifications in multi-tenant K8s environment. It receives alerts or notifications from different senders and then send notifications to various tenant receivers based on alerts/notifications' tenant label like "namespace".
name: notification-manager
version: 2.5.0
version: 2.6.0
2 changes: 1 addition & 1 deletion helm/templates/notificationmanagers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
{{- if .Values.notificationmanager.replicas }}
replicas: {{ .Values.notificationmanager.replicas }}
{{- end}}
image: {{ include "global.imageRegistry" .}}{{ .Values.notificationmanager.image.repo }}:{{ .Values.notificationmanager.image.tag }}
image: {{ include "global.imageRegistry" .}}{{ .Values.notificationmanager.image.repo }}:{{ .Values.notificationmanager.image.tag | default (printf "v%s" .Chart.AppVersion) }}
imagePullPolicy: {{ .Values.notificationmanager.image.pullPolicy }}
serviceAccountName: notification-manager-sa
portName: webhook
Expand Down
2 changes: 1 addition & 1 deletion helm/templates/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
- name: TZ
value: {{ .Values.timezone }}
{{- end }}
image: {{ include "global.imageRegistry" . }}{{ .Values.operator.containers.operator.image.repo }}:{{ .Values.operator.containers.operator.image.tag }}
image: {{ include "global.imageRegistry" . }}{{ .Values.operator.containers.operator.image.repo }}:{{ .Values.operator.containers.operator.image.tag | default (printf "v%s" .Chart.AppVersion) }}
imagePullPolicy: {{ .Values.operator.containers.operator.image.pullPolicy }}
name: notification-manager-operator
ports:
Expand Down
4 changes: 2 additions & 2 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ operator:
operator:
image:
repo: kubesphere/notification-manager-operator
tag: v2.5.0
tag: v2.6.0
pullPolicy: IfNotPresent
resources:
limits:
Expand All @@ -45,7 +45,7 @@ operator:
notificationmanager:
image:
repo: kubesphere/notification-manager
tag: v2.5.0
tag: v2.6.0
pullPolicy: IfNotPresent
sidecar:
image:
Expand Down