Skip to content

Commit

Permalink
feat: add excludequeues option to sentry worker deployment (#1441)
Browse files Browse the repository at this point in the history
  • Loading branch information
patsevanton authored Sep 10, 2024
1 parent 4c994b6 commit 78e80fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ spec:
args:
- "run"
- "worker"
{{- if .Values.sentry.worker.excludeQueues }}
- "--exclude-queues"
- "{{ .Values.sentry.worker.excludeQueues }}"
{{- end }}
{{- if .Values.sentry.worker.concurrency }}
- "-c"
- "{{ .Values.sentry.worker.concurrency }}"
Expand Down
2 changes: 1 addition & 1 deletion charts/sentry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ sentry:
# podLabels: []
# logLevel: "WARNING" # DEBUG|INFO|WARNING|ERROR|CRITICAL|FATAL
# logFormat: "machine" # human|machine

# excludeQueues: ""
# it's better to use prometheus adapter and scale based on
# the size of the rabbitmq queue
autoscaling:
Expand Down

0 comments on commit 78e80fb

Please sign in to comment.