Skip to content

Commit

Permalink
fix: snuba connection (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mokto authored Feb 6, 2020
1 parent 9e1cc7a commit 9bf1ffb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sentry-db/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: sentry-db
description: A Helm chart for Kubernetes
type: application
version: 0.6.0
version: 0.6.1
appVersion: 10.0.0
dependencies:
- name: redis
Expand Down
2 changes: 1 addition & 1 deletion sentry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: sentry
description: A Helm chart for Kubernetes
type: application
version: 0.6.0
version: 0.6.1
appVersion: 10.0.0
2 changes: 1 addition & 1 deletion sentry/templates/deployment-sentry-cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ spec:
- "cron"
env:
- name: SNUBA
value: http://{{ template "sentry.prefix" . }}snuba
value: http://{{ template "sentry.prefix" . }}snuba:{{ template "snuba.port" }}
- name: C_FORCE_ROOT
value: "true"
- name: BROKER_URL
Expand Down
2 changes: 1 addition & 1 deletion sentry/templates/deployment-sentry-worker-redis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
{{- end }}
env:
- name: SNUBA
value: http://{{ template "sentry.prefix" . }}snuba
value: http://{{ template "sentry.prefix" . }}snuba:{{ template "snuba.port" }}
- name: C_FORCE_ROOT
value: "true"
- name: BROKER_URL
Expand Down
2 changes: 1 addition & 1 deletion sentry/templates/deployment-sentry-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
{{- end }}
env:
- name: SNUBA
value: http://{{ template "sentry.prefix" . }}snuba
value: http://{{ template "sentry.prefix" . }}snuba:{{ template "snuba.port" }}
- name: C_FORCE_ROOT
value: "true"
- name: BROKER_URL
Expand Down

0 comments on commit 9bf1ffb

Please sign in to comment.