File tree Expand file tree Collapse file tree 7 files changed +18
-10
lines changed Expand file tree Collapse file tree 7 files changed +18
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## v2.6.0 / 2025-06-30
2
+
3
+ ### Enhancements
4
+
5
+ - update actions/cache to v4 (#293 ) @wanjunlei
6
+ - update template (#296 ) @wanjunlei
7
+
1
8
## v2.5.2 / 2024-05-14
2
9
3
10
### Enhancements
Original file line number Diff line number Diff line change @@ -82,11 +82,11 @@ We assume you already have a Kubernetes cluster (v1.16+). You can install one us
82
82
83
83
``` shell
84
84
# Deploy CRDs and the Notification Manager Operator:
85
- kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2 /bundle.yaml
85
+ kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.6.0 /bundle.yaml
86
86
# Deploy default template:
87
- kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2 /template.yaml
87
+ kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.6.0 /template.yaml
88
88
# Deploy built-in language packs.
89
- kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2 /zh-cn.yaml
89
+ kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.6.0 /zh-cn.yaml
90
90
```
91
91
92
92
#### Install with helm
@@ -103,7 +103,7 @@ ensures a deployment meeting the resource requirements is running.
103
103
We should create a NotificationManager CR first, skip this when using helm install.
104
104
105
105
``` shell
106
- kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2 /notification_manager.yaml
106
+ kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.6.0 /notification_manager.yaml
107
107
```
108
108
109
109
### Configure sender
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ This page describes the release process and the currently planned schedule for u
20
20
| v2.5.0 | 2024-03-21 | leiwanjun (GitHub: @leiwanjun ) |
21
21
| v2.5.1 | 2024-04-03 | leiwanjun (GitHub: @leiwanjun ) |
22
22
| v2.5.2 | 2024-04-14 | leiwanjun (GitHub: @leiwanjun ) |
23
+ | v2.6.0 | 2025-06-30 | Gentleelephant (GitHub: @Gentleelephant ) |
23
24
24
25
# How to cut a new release
25
26
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
- appVersion : 2.5 .0
2
+ appVersion : 2.6 .0
3
3
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".
4
4
name : notification-manager
5
- version : 2.5 .0
5
+ version : 2.6 .0
Original file line number Diff line number Diff line change 8
8
{{- if .Values.notificationmanager.replicas }}
9
9
replicas : {{ .Values.notificationmanager.replicas }}
10
10
{{- end}}
11
- image : {{ include "global.imageRegistry" .}}{{ .Values.notificationmanager.image.repo }}:{{ .Values.notificationmanager.image.tag }}
11
+ image : {{ include "global.imageRegistry" .}}{{ .Values.notificationmanager.image.repo }}:{{ .Values.notificationmanager.image.tag | default (printf "v%s" .Chart.AppVersion) }}
12
12
imagePullPolicy : {{ .Values.notificationmanager.image.pullPolicy }}
13
13
serviceAccountName : notification-manager-sa
14
14
portName : webhook
Original file line number Diff line number Diff line change 47
47
- name : TZ
48
48
value : {{ .Values.timezone }}
49
49
{{- end }}
50
- image : {{ include "global.imageRegistry" . }}{{ .Values.operator.containers.operator.image.repo }}:{{ .Values.operator.containers.operator.image.tag }}
50
+ image : {{ include "global.imageRegistry" . }}{{ .Values.operator.containers.operator.image.repo }}:{{ .Values.operator.containers.operator.image.tag | default (printf "v%s" .Chart.AppVersion) }}
51
51
imagePullPolicy : {{ .Values.operator.containers.operator.image.pullPolicy }}
52
52
name : notification-manager-operator
53
53
ports :
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ operator:
27
27
operator :
28
28
image :
29
29
repo : kubesphere/notification-manager-operator
30
- tag : v2.5 .0
30
+ tag : v2.6 .0
31
31
pullPolicy : IfNotPresent
32
32
resources :
33
33
limits :
@@ -45,7 +45,7 @@ operator:
45
45
notificationmanager :
46
46
image :
47
47
repo : kubesphere/notification-manager
48
- tag : v2.5 .0
48
+ tag : v2.6 .0
49
49
pullPolicy : IfNotPresent
50
50
sidecar :
51
51
image :
You can’t perform that action at this time.
0 commit comments