Skip to content

Commit

Permalink
fix: external redis functionality for relay (#1548)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamyogeshg authored Oct 15, 2024
1 parent 495b42b commit 6e71fc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/sentry/templates/relay/deployment-relay.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ spec:
name: {{ .Values.externalRedis.existingSecret }}
key: {{ default "redis-password" .Values.externalRedis.existingSecretKey }}
- name: RELAY_REDIS_URL
value: {{ $redisProto }}://$(HELM_CHARTS_RELAY_REDIS_PASSWORD_CONTROLLED)@{{ $redisHost }}:{{ $redisPort }}/{{ $redisDb }}
value: {{ $redisProto }}://:$(HELM_CHARTS_RELAY_REDIS_PASSWORD_CONTROLLED)@{{ $redisHost }}:{{ $redisPort }}/{{ $redisDb }}
{{- end }}
{{- if .Values.relay.init.env }}
{{ toYaml .Values.relay.init.env | indent 12 }}
Expand Down Expand Up @@ -141,7 +141,7 @@ spec:
name: {{ .Values.externalRedis.existingSecret }}
key: {{ default "redis-password" .Values.externalRedis.existingSecretKey }}
- name: RELAY_REDIS_URL
value: {{ $redisProto }}://$(HELM_CHARTS_RELAY_REDIS_PASSWORD_CONTROLLED)@{{ $redisHost }}:{{ $redisPort }}/{{ $redisDb }}
value: {{ $redisProto }}://:$(HELM_CHARTS_RELAY_REDIS_PASSWORD_CONTROLLED)@{{ $redisHost }}:{{ $redisPort }}/{{ $redisDb }}
{{- end }}
{{- if .Values.relay.env }}
{{ toYaml .Values.relay.env | indent 8 }}
Expand Down

0 comments on commit 6e71fc1

Please sign in to comment.