64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
#
|
|
# IMPORTANT NOTE
|
|
#
|
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
|
# https://scm.docker.cabillot.eu/perso/helm-library-common
|
|
#
|
|
|
|
image:
|
|
repository: docker.io/binwiederhier/ntfy
|
|
tag: "2.0.1@sha256:3ad05db0cc081d14133cd8bef6fabfca128977eae978e07397a0657e18a06165"
|
|
pullPolicy: Always
|
|
|
|
args: ["serve"]
|
|
|
|
env:
|
|
TZ: America/New_York
|
|
#NTFY_BASE_URL: "https://xxx.domain.tld"
|
|
NTFY_CACHE_FILE: "/var/cache/ntfy/cache.db"
|
|
NTFY_AUTH_FILE: "/etc/ntfy/user.db"
|
|
NTFY_BEHIND_PROXY: "true"
|
|
NTFY_ATTACHMENT_CACHE_DIR: "/var/cache/ntfy-attachments"
|
|
NTFY_ATTACHMENT_FILE_SIZE_LIMIT: "2G"
|
|
NTFY_LOG_LEVEL: "INFO"
|
|
NTFY_VISITOR_ATTACHMENT_DAILY_BANDWIDTH_LIMIT: "65535G"
|
|
NTFY_VISITOR_ATTACHMENT_TOTAL_SIZE_LIMIT: "65535G"
|
|
NTFY_AUTH_DEFAULT_ACCESS: "deny-all"
|
|
NTFY_ATTACHMENT_EXPIRY_DURATION: "240h"
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 80
|
|
|
|
ingress:
|
|
main:
|
|
enabled: false
|
|
|
|
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
|