Skip to content

Commit 445c7c1

Browse files
committed
enable more custom undocumented options
1 parent d5ade00 commit 445c7c1

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

charts/pixelfed/templates/configmap_env.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,13 @@ data:
9191
FILESYSTEM_CLOUD: {{ .Values.pixelfed.filesystem.cloud }}
9292
MEDIA_DELETE_LOCAL_AFTER_CLOUD: {{ .Values.pixelfed.media_delete_local_after_cloud }}
9393

94+
# covid
95+
ENABLE_COVID_LABEL: {{ .Values.pixelfed.covid.enable_label }}
96+
COVID_LABEL_URL: {{ .Values.pixelfed.covid.label_url }}
97+
COVID_LABEL_ORG: {{ .Values.pixelfed.covid.label_org }}
98+
99+
BANNED_USERNAMES: {{ .Values.pixelfed.banned_usernames }}
100+
94101
# activity pub
95102
ACTIVITY_PUB: {{ .Values.pixelfed.activity_pub.enabled | quote }}
96103
AP_REMOTE_FOLLOW: {{ .Values.pixelfed.activity_pub.remote_follow | quote }}

charts/pixelfed/values.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,15 @@ pixelfed:
299299
cloud: "s3"
300300
driver: "local"
301301

302+
covid:
303+
enable_label: true
304+
label_url: "https://www.who.int/emergencies/diseases/novel-coronavirus-2019/advice-for-public"
305+
label_org: "visit the WHO website"
306+
307+
# -- not entirely sure if this is a list of banned usernames or text to
308+
# display instead of banned usernames
309+
banned_usernames: ""
310+
302311
# -- delete local files after saving to the cloud
303312
media_delete_local_after_cloud: true
304313

0 commit comments

Comments
 (0)