mirror of
https://github.com/mastodon/chart
synced 2025-03-15 05:21:52 +00:00
feat: add configurable timezone (#42)
Co-authored-by: Tim Campbell <timetinytim@gmail.com>
This commit is contained in:
parent
d6d3f428a3
commit
349f76c610
|
@ -28,3 +28,6 @@ elasticsearch:
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
ingest:
|
ingest:
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
|
# -- Timezone for all pods unless overwritten
|
||||||
|
timezone: UTC
|
||||||
|
|
|
@ -383,3 +383,7 @@ data:
|
||||||
{{- else }}
|
{{- else }}
|
||||||
CACHE_BUSTER_ENABLED: "false"
|
CACHE_BUSTER_ENABLED: "false"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.timezone }}
|
||||||
|
TZ: {{ . | quote }}
|
||||||
|
{{- end }}
|
||||||
|
|
|
@ -599,6 +599,9 @@ tolerations: []
|
||||||
# -- Affinity for all pods unless overwritten
|
# -- Affinity for all pods unless overwritten
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
|
# -- Timezone for all pods unless overwritten
|
||||||
|
timezone: UTC
|
||||||
|
|
||||||
# -- Topology Spread Constraints for all pods unless overwritten
|
# -- Topology Spread Constraints for all pods unless overwritten
|
||||||
# Please note that you need to use `matchLabelKeys` (Kubernetes 1.25+) if you
|
# Please note that you need to use `matchLabelKeys` (Kubernetes 1.25+) if you
|
||||||
# want to spread each deployment independently, or override topologySpreadConstraints
|
# want to spread each deployment independently, or override topologySpreadConstraints
|
||||||
|
|
Loading…
Reference in New Issue
Block a user