3
0
mirror of https://github.com/mastodon/chart synced 2025-05-18 04:53:21 +00:00

Add quotes to ports

This commit is contained in:
Tim Campbell 2024-05-14 22:09:34 +02:00
parent 4d62f81b55
commit 75cd73f797

View File

@ -79,9 +79,9 @@ data:
SIDEKIQ_REDIS_HOST: {{ .Values.redis.hostname }} SIDEKIQ_REDIS_HOST: {{ .Values.redis.hostname }}
{{- end }} {{- end }}
{{- if .Values.redis.sidekiq.port }} {{- if .Values.redis.sidekiq.port }}
SIDEKIQ_REDIS_PORT: {{ .Values.redis.sidekiq.port }} SIDEKIQ_REDIS_PORT: {{ .Values.redis.sidekiq.port | quote }}
{{- else }} {{- else }}
SIDEKIQ_REDIS_PORT: {{ .Values.redis.port }} SIDEKIQ_REDIS_PORT: {{ .Values.redis.port | default "6379" | quote }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- if .Values.redis.cache.enabled }} {{- if .Values.redis.cache.enabled }}
@ -91,9 +91,9 @@ data:
CACHE_REDIS_HOST: {{ .Values.redis.hostname}} CACHE_REDIS_HOST: {{ .Values.redis.hostname}}
{{- end }} {{- end }}
{{- if .Values.redis.cache.port }} {{- if .Values.redis.cache.port }}
CACHE_REDIS_PORT: {{ .Values.redis.cache.port }} CACHE_REDIS_PORT: {{ .Values.redis.cache.port | quote }}
{{- else }} {{- else }}
CACHE_REDIS_PORT: {{ .Values.redis.port }} CACHE_REDIS_PORT: {{ .Values.redis.port | default "6379" | quote }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- if .Values.mastodon.s3.enabled }} {{- if .Values.mastodon.s3.enabled }}