mirror of
https://github.com/mastodon/chart
synced 2025-03-14 21:11:50 +00:00
Add s3.mastodon.multipart_threshold config option (#67)
Co-authored-by: Tim Campbell <timetinytim@gmail.com>
This commit is contained in:
parent
1cce47b250
commit
6c902dccac
|
@ -84,6 +84,9 @@ data:
|
||||||
{{- with .Values.mastodon.s3.alias_host }}
|
{{- with .Values.mastodon.s3.alias_host }}
|
||||||
S3_ALIAS_HOST: {{ . }}
|
S3_ALIAS_HOST: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.mastodon.s3.multipart_threshold }}
|
||||||
|
S3_MULTIPART_THRESHOLD: "{{ . }}"
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.mastodon.s3.override_path_style }}
|
{{- with .Values.mastodon.s3.override_path_style }}
|
||||||
S3_OVERRIDE_PATH_STYLE: "{{ . }}"
|
S3_OVERRIDE_PATH_STYLE: "{{ . }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -78,6 +78,10 @@ mastodon:
|
||||||
permission: ""
|
permission: ""
|
||||||
# -- If you have a caching proxy, enter its base URL here.
|
# -- If you have a caching proxy, enter its base URL here.
|
||||||
alias_host: ""
|
alias_host: ""
|
||||||
|
# When uploading data to S3, if the number of bytes to send exceedes
|
||||||
|
# multipart_threshold then a multi part session is automatically started
|
||||||
|
# and the data is sent up in chunks. Defaults to 16777216 (16MB).
|
||||||
|
multipart_threshold: ""
|
||||||
# -- Set this to true if the storage provider uses domain style 'bucket.endpoint' naming
|
# -- Set this to true if the storage provider uses domain style 'bucket.endpoint' naming
|
||||||
# override_path_style: "true"
|
# override_path_style: "true"
|
||||||
deepl:
|
deepl:
|
||||||
|
@ -573,7 +577,8 @@ revisionPodAnnotation: true
|
||||||
jobAnnotations: {}
|
jobAnnotations: {}
|
||||||
|
|
||||||
# -- Default resources for all Deployments and jobs unless overwritten
|
# -- Default resources for all Deployments and jobs unless overwritten
|
||||||
resources: {}
|
resources:
|
||||||
|
{}
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||||
# choice for the user. This also increases chances charts run on environments with little
|
# choice for the user. This also increases chances charts run on environments with little
|
||||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||||
|
|
Loading…
Reference in New Issue
Block a user