mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 17:37:29 -07:00
[chart] make maxNoteLength configurable
Signed-off-by: Mae Dartmann <mae+git_work@dartmann.net>
This commit is contained in:
parent
f70f61523d
commit
e9fdad57d5
3 changed files with 5 additions and 1 deletions
|
@ -31,6 +31,7 @@ A fun, new, open way to experience social media https://iceshrimp.dev
|
||||||
| iceshrimp.libreTranslate.apiKey | string | `""` | |
|
| iceshrimp.libreTranslate.apiKey | string | `""` | |
|
||||||
| iceshrimp.libreTranslate.apiUrl | string | `""` | |
|
| iceshrimp.libreTranslate.apiUrl | string | `""` | |
|
||||||
| iceshrimp.libreTranslate.managed | bool | `false` | |
|
| iceshrimp.libreTranslate.managed | bool | `false` | |
|
||||||
|
| iceshrimp.maxNoteLength | integer | `3000` | Max note length |
|
||||||
| iceshrimp.objectStorage.access_key | string | `""` | |
|
| iceshrimp.objectStorage.access_key | string | `""` | |
|
||||||
| iceshrimp.objectStorage.access_secret | string | `""` | |
|
| iceshrimp.objectStorage.access_secret | string | `""` | |
|
||||||
| iceshrimp.objectStorage.baseUrl | string | `""` | |
|
| iceshrimp.objectStorage.baseUrl | string | `""` | |
|
||||||
|
|
|
@ -211,7 +211,7 @@ id: 'aid'
|
||||||
#───┘ Other configuration └─────────────────────────────────────
|
#───┘ Other configuration └─────────────────────────────────────
|
||||||
|
|
||||||
# Max note length, should be < 8000.
|
# Max note length, should be < 8000.
|
||||||
#maxNoteLength: 3000
|
maxNoteLength: {{ .Values.iceshrimp.maxNoteLength | default 3000 }}
|
||||||
|
|
||||||
# Maximum lenght of an image caption or file comment (default 1500, max 8192)
|
# Maximum lenght of an image caption or file comment (default 1500, max 8192)
|
||||||
#maxCaptionLength: 1500
|
#maxCaptionLength: 1500
|
||||||
|
|
|
@ -68,6 +68,9 @@ iceshrimp:
|
||||||
# Number of worker processes per replica
|
# Number of worker processes per replica
|
||||||
clusterLimit: 1
|
clusterLimit: 1
|
||||||
|
|
||||||
|
# Max note length
|
||||||
|
maxNoteLength: 3000
|
||||||
|
|
||||||
# https://github.com/bitnami/charts/tree/master/bitnami/postgresql#parameters
|
# https://github.com/bitnami/charts/tree/master/bitnami/postgresql#parameters
|
||||||
postgresql:
|
postgresql:
|
||||||
# -- disable if you want to use an existing db; in which case the values below
|
# -- disable if you want to use an existing db; in which case the values below
|
||||||
|
|
Loading…
Reference in a new issue