Skip to content

Commit

Permalink
feat: allow to specify Recreate strategy type for sentry-web (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Tumik authored Oct 26, 2020
1 parent 098fdef commit 0179c79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: sentry
description: A Helm chart for Kubernetes
type: application
version: 6.2.0
version: 6.2.1
appVersion: 20.9.0
dependencies:
- name: redis
Expand Down
2 changes: 2 additions & 0 deletions sentry/templates/deployment-sentry-web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ metadata:
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
spec:
strategy:
type: {{ .Values.sentry.web.strategyType }}
selector:
matchLabels:
app: {{ template "sentry.fullname" . }}
Expand Down
2 changes: 2 additions & 0 deletions sentry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ relay:
sentry:
singleOrganization: true
web:
# if using filestore backend filesystem with RWO access, set strategyType to Recreate
strategyType: RollingUpdate
replicas: 1
env: []
probeInitialDelaySeconds: 10
Expand Down

0 comments on commit 0179c79

Please sign in to comment.