Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update notification chart #242

Merged
merged 1 commit into from
Feb 29, 2024
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
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.4.0
appVersion: 2.5.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.4.0
version: 2.5.0
7 changes: 7 additions & 0 deletions helm/templates/notificationmanagers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ spec:
{{- end }}
name: tenant
type: kubesphere
resources:
limits:
cpu: {{ .Values.notificationmanager.sidecar.tenant.resources.limits.cpu }}
memory: {{ .Values.notificationmanager.sidecar.tenant.resources.limits.memory }}
requests:
cpu: {{ .Values.notificationmanager.sidecar.tenant.resources.requests.cpu }}
memory: {{ .Values.notificationmanager.sidecar.tenant.resources.requests.memory }}
{{- end }}
template:
{{- toYaml .Values.notificationmanager.template | nindent 4 }}
Expand Down
13 changes: 11 additions & 2 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ operator:
operator:
image:
repo: kubesphere/notification-manager-operator
tag: v2.5.0-rc.0
tag: v2.5.0-rc.1
pullPolicy: IfNotPresent
resources:
limits:
Expand All @@ -39,9 +39,18 @@ operator:

# value of notification-manager
notificationmanager:
sidecar:
tenant:
resources:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 200m
memory: 256Mi
image:
repo: kubesphere/notification-manager
tag: v2.5.0-rc.0
tag: v2.5.0-rc.1
pullPolicy: IfNotPresent
replicas: 1
resources:
Expand Down
Loading