Skip to content

Commit

Permalink
release v2.3.0 (#207)
Browse files Browse the repository at this point in the history
Signed-off-by: wanjunlei <wanjunlei@kubesphere.io>
  • Loading branch information
wanjunlei committed Apr 12, 2023
1 parent f46b816 commit 1062a20
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 36 deletions.
6 changes: 6 additions & 0 deletions CHANGLOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v2.3.0 / 2023-04-12

### Enhancements

- Optimize the logic of notification history(#193). @wanjunlei

## v2.3.0-rc.0 / 2023-02-07

### Enhancements
Expand Down
31 changes: 8 additions & 23 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,17 @@ repo: github.com/kubesphere/notification-manager
resources:
- group: notification
kind: NotificationManager
version: v1alpha1
version: v2beta2
- group: notification
kind: EmailConfig
version: v1alpha1
- group: notification
kind: EmailReceiver
version: v1alpha1
kind: Config
version: v2beta2
- group: notification
kind: Receiver
version: v1alpha1
- group: notification
kind: SlackConfig
version: v1alpha1
- group: notification
kind: SlackReceiver
version: v1alpha1
- group: notification
kind: WebhookConfig
version: v1alpha1
- group: notification
kind: WebhookReceiver
version: v1alpha1
version: v2beta2
- group: notification
kind: WechatConfig
version: v1alpha1
kind: Router
version: v2beta2
- group: notification
kind: WechatReceiver
version: v1alpha1
kind: Silence
version: v2beta2
version: "2"
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,17 @@ 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.3.0-rc.0/bundle.yaml
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.3.0/bundle.yaml
# Deploy default template:
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.3.0-rc.0/template.yaml
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.3.0/template.yaml
# Deploy built-in language packs.
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.3.0-rc.0/zh-cn.yaml
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.3.0/zh-cn.yaml
```

#### Install with helm

```shell
helm install notification-manager --create-namespace -n kubesphere-monitoring-system https://github.com/kubesphere/notification-manager/releases/download/v2.3.0-rc.0/notification-manager.tgz
helm install notification-manager --create-namespace -n kubesphere-monitoring-system https://github.com/kubesphere/notification-manager/releases/download/v2.3.0/notification-manager.tgz
```

### Configure NotificationManager
Expand All @@ -102,7 +102,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.3.0-rc.0/notification_manager.yaml
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.3.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 @@ -15,6 +15,7 @@ This page describes the release process and the currently planned schedule for u
| v2.1.0 | 2022-11-29 | leiwanjun (GitHub: @leiwanjun) |
| v2.2.0 | 2023-01-06 | Gentleelephant (GitHub: @Gentleelephant) |
| v2.3.0-rc.0 | 2023-02-07 | leiwanjun (GitHub: @leiwanjun) |
| v2.3.0 | 2023-04-12 | leiwanjun (GitHub: @leiwanjun) |

# How to cut a new release

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.3.0-rc.0
v2.3.0
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: kubesphere/notification-manager-operator
newTag: v2.3.0-rc.0
newTag: v2.3.0
2 changes: 1 addition & 1 deletion config/samples/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ spec:
groupLabels:
- alertname
- namespace
image: kubesphere/notification-manager:latest
image: kubesphere/notification-manager:v2.3.0
imagePullPolicy: Always
portName: webhook
receivers:
Expand Down
2 changes: 1 addition & 1 deletion config/samples/notification_manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
requests:
cpu: 100m
memory: 20Mi
image: kubesphere/notification-manager:v2.3.0-rc.0
image: kubesphere/notification-manager:v2.3.0
imagePullPolicy: Always
serviceAccountName: notification-manager-sa
portName: webhook
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.2.0
appVersion: 2.3.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.2.0
version: 2.3.0
4 changes: 2 additions & 2 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ operator:
operator:
image:
repo: kubesphere/notification-manager-operator
tag: v2.3.0-rc.0
tag: v2.3.0
pullPolicy: IfNotPresent
resources:
limits:
Expand All @@ -48,7 +48,7 @@ operator:
notificationmanager:
image:
repo: kubesphere/notification-manager
tag: v2.3.0-rc.0
tag: v2.3.0
pullPolicy: IfNotPresent
replicas: 1
resources:
Expand Down

0 comments on commit 1062a20

Please sign in to comment.