Skip to content

Commit

Permalink
fix: nginx configmap name (#185)
Browse files Browse the repository at this point in the history
The nginx configmap name was hardwired to `sentry-nginx`, and it only works if the helm release name is `sentry`.
This commit fixes that by using a templated variable instead
  • Loading branch information
slumbi authored Sep 29, 2020
1 parent 652a838 commit 3e86a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ slack: {}
nginx:
enabled: true
containerPort: 8080
existingServerBlockConfigmap: sentry-nginx
existingServerBlockConfigmap: '{{ template "sentry.fullname" . }}'
resources: {}
replicaCount: 1
service:
Expand Down

0 comments on commit 3e86a9a

Please sign in to comment.