mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/sentry] Add worker concurrency (#14940)
* [stable/sentry] Add worker concurrency Signed-off-by: Konstantin Lebedev <kostyan.lebedev@gmail.com> * [stable/sentry] Add concurrency to values.yaml Signed-off-by: Konstantin Lebedev <kostyan.lebedev@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
2404b9d197
commit
ec69eb9090
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: Sentry is a cross-platform crash reporting and aggregation platform.
|
||||
name: sentry
|
||||
version: 1.5.5
|
||||
version: 1.5.6
|
||||
appVersion: 9.1.1
|
||||
keywords:
|
||||
- debugging
|
||||
|
||||
@@ -92,6 +92,7 @@ Parameter | Description
|
||||
`worker.schedulerName` | Name of an alternate scheduler for worker | `nil`
|
||||
`worker.affinity` | Affinity settings for worker pod assignment | `{}`
|
||||
`worker.tolerations` | Toleration labels for worker pod assignment | `[]`
|
||||
`worker.concurrency` | Celery worker concurrency | `nil`
|
||||
`user.create` | Create the default admin | `true`
|
||||
`user.email` | Username for default admin | `admin@sentry.local`
|
||||
`email.from_address` | Email notifications are from | `smtp`
|
||||
|
||||
@@ -49,7 +49,13 @@ spec:
|
||||
- name: {{ .Chart.Name }}-workers
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
args: ["run", "worker"]
|
||||
args:
|
||||
- "run"
|
||||
- "worker"
|
||||
{{- if .Values.worker.concurrency }}
|
||||
- "-c"
|
||||
- "{{ .Values.worker.concurrency }}"
|
||||
{{- end }}
|
||||
ports:
|
||||
- containerPort: {{ .Values.service.internalPort }}
|
||||
env:
|
||||
|
||||
@@ -68,6 +68,7 @@ worker:
|
||||
# schedulerName:
|
||||
# Optional extra labels for pod, i.e. redis-client: "true"
|
||||
# podLabels: []
|
||||
# concurrency:
|
||||
|
||||
# Admin user to create
|
||||
user:
|
||||
|
||||
Reference in New Issue
Block a user