mirror of
https://github.com/mastodon/chart
synced 2025-03-15 13:31:51 +00:00
Add deepl configuration
This commit is contained in:
parent
b4f4811efd
commit
03ea7244d7
|
@ -333,3 +333,7 @@ data:
|
||||||
{{- range $k, $v := .Values.mastodon.extraEnvVars }}
|
{{- range $k, $v := .Values.mastodon.extraEnvVars }}
|
||||||
{{ $k }}: {{ quote $v }}
|
{{ $k }}: {{ quote $v }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{- if .Values.mastodon.deepl.enabled }}
|
||||||
|
DEEPL_PLAN: {{ .Values.mastodon.deepl.plan }}
|
||||||
|
{{- end }}
|
||||||
|
|
|
@ -121,6 +121,13 @@ spec:
|
||||||
name: {{ $context.Values.mastodon.s3.existingSecret }}
|
name: {{ $context.Values.mastodon.s3.existingSecret }}
|
||||||
key: AWS_ACCESS_KEY_ID
|
key: AWS_ACCESS_KEY_ID
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if and $context.Values.mastodon.deepl.enabled }}
|
||||||
|
- name: "DEEPL_API_KEY"
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ $context.Values.mastodon.deepl.apiKeySecretRef.name }}
|
||||||
|
key: {{ $context.Values.mastodon.deepl.apiKeySecretRef.key }}
|
||||||
|
{{- end }}
|
||||||
{{- if (not $context.Values.mastodon.s3.enabled) }}
|
{{- if (not $context.Values.mastodon.s3.enabled) }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: assets
|
- name: assets
|
||||||
|
|
|
@ -109,6 +109,13 @@ spec:
|
||||||
name: {{ .Values.mastodon.s3.existingSecret }}
|
name: {{ .Values.mastodon.s3.existingSecret }}
|
||||||
key: AWS_ACCESS_KEY_ID
|
key: AWS_ACCESS_KEY_ID
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.mastodon.deepl.enabled }}
|
||||||
|
- name: "DEEPL_API_KEY"
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ .Values.mastodon.deepl.apiKeySecretRef.name }}
|
||||||
|
key: {{ .Values.mastodon.deepl.apiKeySecretRef.key }}
|
||||||
|
{{- end }}
|
||||||
{{- if (not .Values.mastodon.s3.enabled) }}
|
{{- if (not .Values.mastodon.s3.enabled) }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: assets
|
- name: assets
|
||||||
|
|
|
@ -75,6 +75,12 @@ 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: ""
|
||||||
|
deepl:
|
||||||
|
enabled: false
|
||||||
|
plan:
|
||||||
|
apiKeySecretRef:
|
||||||
|
name:
|
||||||
|
key:
|
||||||
# these must be set manually; autogenerated keys are rotated on each upgrade
|
# these must be set manually; autogenerated keys are rotated on each upgrade
|
||||||
secrets:
|
secrets:
|
||||||
secret_key_base: ""
|
secret_key_base: ""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user