From 1ac69bc9cd668f62936826e77230b134a5b4160f Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Thu, 16 Feb 2023 12:48:22 -0500 Subject: [PATCH] feat: increase size liit --- charts/ntfy/values.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/charts/ntfy/values.yaml b/charts/ntfy/values.yaml index a9e3eaa..1ba248a 100644 --- a/charts/ntfy/values.yaml +++ b/charts/ntfy/values.yaml @@ -19,7 +19,7 @@ env: NTFY_AUTH_FILE: "/etc/ntfy/user.db" NTFY_BEHIND_PROXY: "true" NTFY_ATTACHMENT_CACHE_DIR: "/var/cache/ntfy-attachments" - NTFY_ATTACHMENT_FILE_SIZE_LIMIT: "200M" + NTFY_ATTACHMENT_FILE_SIZE_LIMIT: "2G" NTFY_LOG_LEVEL: "INFO" NTFY_VISITOR_ATTACHMENT_DAILY_BANDWIDTH_LIMIT: "65535G" NTFY_VISITOR_ATTACHMENT_TOTAL_SIZE_LIMIT: "65535G" @@ -41,16 +41,23 @@ automountServiceAccountToken: false persistence: etc: enabled: true + # test, géré par flux en fait + #type: hostPath + #hostPath: /data/volume-ntfy-etc mountPath: /etc/ntfy accessMode: ReadWriteOnce size: 100Mi cache: enabled: true + #type: hostPath + #hostPath: /data/volume-ntfy-cache mountPath: /var/cache/ntfy accessMode: ReadWriteOnce size: 100Mi cache-attachments: enabled: true + #type: hostPath + #hostPath: /data/volume-ntfy-attachents mountPath: /var/cache/ntfy-attachments accessMode: ReadWriteOnce size: 1000Mi