enable more custom undocumented options

This commit is contained in:
jessebot
2025-01-19 19:16:12 +01:00
parent d5ade00416
commit 445c7c1933
2 changed files with 16 additions and 0 deletions
@@ -91,6 +91,13 @@ data:
FILESYSTEM_CLOUD: {{ .Values.pixelfed.filesystem.cloud }} FILESYSTEM_CLOUD: {{ .Values.pixelfed.filesystem.cloud }}
MEDIA_DELETE_LOCAL_AFTER_CLOUD: {{ .Values.pixelfed.media_delete_local_after_cloud }} MEDIA_DELETE_LOCAL_AFTER_CLOUD: {{ .Values.pixelfed.media_delete_local_after_cloud }}
# covid
ENABLE_COVID_LABEL: {{ .Values.pixelfed.covid.enable_label }}
COVID_LABEL_URL: {{ .Values.pixelfed.covid.label_url }}
COVID_LABEL_ORG: {{ .Values.pixelfed.covid.label_org }}
BANNED_USERNAMES: {{ .Values.pixelfed.banned_usernames }}
# activity pub # activity pub
ACTIVITY_PUB: {{ .Values.pixelfed.activity_pub.enabled | quote }} ACTIVITY_PUB: {{ .Values.pixelfed.activity_pub.enabled | quote }}
AP_REMOTE_FOLLOW: {{ .Values.pixelfed.activity_pub.remote_follow | quote }} AP_REMOTE_FOLLOW: {{ .Values.pixelfed.activity_pub.remote_follow | quote }}
+9
View File
@@ -299,6 +299,15 @@ pixelfed:
cloud: "s3" cloud: "s3"
driver: "local" driver: "local"
covid:
enable_label: true
label_url: "https://www.who.int/emergencies/diseases/novel-coronavirus-2019/advice-for-public"
label_org: "visit the WHO website"
# -- not entirely sure if this is a list of banned usernames or text to
# display instead of banned usernames
banned_usernames: ""
# -- delete local files after saving to the cloud # -- delete local files after saving to the cloud
media_delete_local_after_cloud: true media_delete_local_after_cloud: true