Files
truecharts/charts/stable/ntfy/values.yaml
T
TrueCharts BotandGitHub a9d4cd33ac chore(deps): update container image binwiederhier/ntfy to v2.8.0@b8f8fb9 (#15119)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [binwiederhier/ntfy](https://ntfy.sh/)
([source](https://togithub.com/binwiederhier/ntfy)) | minor | `v2.7.0`
-> `v2.8.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>binwiederhier/ntfy (binwiederhier/ntfy)</summary>

###
[`v2.8.0`](https://togithub.com/binwiederhier/ntfy/releases/tag/v2.8.0)

[Compare
Source](https://togithub.com/binwiederhier/ntfy/compare/v2.7.0...v2.8.0)

This release brings a handful of random bug fixes: two unrelated access
control list fixes, a fix around web app crashes for languages with
underscores in the language code (e.g. `zh_Hant`, `zh_Hans`, `pt_BR`,
...), a workaround for the `Priority` header (often used in Cloudflare
setups), and support among others support for HTML-only emails
(finally), web app crash fixes

**Bug fixes + maintenance:**

- Support for HTML-only emails
([#&#8203;690](https://togithub.com/binwiederhier/ntfy/issues/690)/[#&#8203;693](https://togithub.com/binwiederhier/ntfy/issues/693),
thanks to [@&#8203;teastrainer](https://togithub.com/teastrainer) and
[@&#8203;CrazyWolf13](https://togithub.com/CrazyWolf13) for reporting)
- Fix ACL issue with topic patterns containing underscores
([#&#8203;840](https://togithub.com/binwiederhier/ntfy/issues/840),
thanks to [@&#8203;Joe-0237](https://togithub.com/Joe-0237) for
reporting)
- Fix ACL issue with order of read/write rules
([#&#8203;914](https://togithub.com/binwiederhier/ntfy/issues/914)/[#&#8203;917](https://togithub.com/binwiederhier/ntfy/issues/917),
thanks to [@&#8203;sandman7920](https://togithub.com/sandman7920))
- Re-add `tzdata` to Docker images for amd64 image
([#&#8203;894](https://togithub.com/binwiederhier/ntfy/issues/894),
[#&#8203;307](https://togithub.com/binwiederhier/ntfy/issues/307))
- Add special logic to ignore `Priority` header if it resembles an RFC
9218 value
([#&#8203;851](https://togithub.com/binwiederhier/ntfy/issues/851)/[#&#8203;895](https://togithub.com/binwiederhier/ntfy/issues/895),
thanks to [@&#8203;gusdleon](https://togithub.com/gusdleon), see also
[#&#8203;351](https://togithub.com/binwiederhier/ntfy/issues/351),
[#&#8203;353](https://togithub.com/binwiederhier/ntfy/issues/353),
[#&#8203;461](https://togithub.com/binwiederhier/ntfy/issues/461))
- PWA: hide install prompt on macOS 14 Safari
([#&#8203;899](https://togithub.com/binwiederhier/ntfy/issues/899),
thanks to [@&#8203;nihalgonsalves](https://togithub.com/nihalgonsalves))
- Fix web app crash in Edge for languages with underline in locale
([#&#8203;922](https://togithub.com/binwiederhier/ntfy/issues/922)/[#&#8203;912](https://togithub.com/binwiederhier/ntfy/issues/912)/[#&#8203;852](https://togithub.com/binwiederhier/ntfy/issues/852),
thanks to [@&#8203;imkero](https://togithub.com/imkero))

**Additional languages:**

- Finnish (thanks to
[@&#8203;Seppo](https://hosted.weblate.org/user/Seppo/))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy42MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuNjMuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
2023-11-25 20:30:13 +01:00

105 lines
3.8 KiB
YAML

image:
repository: binwiederhier/ntfy
tag: v2.8.0@sha256:b8f8fb9ee044524d2baa303e5cfab4b3275378acf0b746bd9ace370a3b631a07
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 10222
persistence:
config:
enabled: true
mountPath: "/etc/ntfy"
cache:
enabled: true
mountPath: "/var/cache/ntfy"
configmap:
ntfy:
enabled: true
data:
# If a path is set, it enables this options. To disable set to empty path
NTFY_ATTACHMENT_CACHE_DIR: '{{ ternary "/var/cache/ntfy/attachments" "" .Values.workload.main.podSpec.containers.main.env.ENABLE_ATTACHMENT_CACHE_DIR }}'
NTFY_CACHE_FILE: '{{ ternary "/var/cache/ntfy/cache.db" "" .Values.workload.main.podSpec.containers.main.env.ENABLE_CACHE_FILE }}'
NTFY_AUTH_FILE: '{{ ternary "/etc/ntfy/user.db" "" .Values.workload.main.podSpec.containers.main.env.ENABLE_AUTH_FILE }}'
NTFY_FIREBASE_KEY_FILE: '{{ ternary "/etc/ntfy/firebase-key.json" "" .Values.workload.main.podSpec.containers.main.env.ENABLE_FIREBASE_FILE }}'
portal:
open:
enabled: true
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
type: tcp
readiness:
type: tcp
startup:
type: tcp
args:
- "serve"
env:
NTFY_LISTEN_HTTP: ":{{ .Values.service.main.ports.main.port }}"
# User Defined
NTFY_BASE_URL: "http://localhost:10222"
NTFY_BEHIND_PROXY: false
ENABLE_FIREBASE_FILE: false
ENABLE_CACHE_FILE: false
ENABLE_ATTACHMENT_CACHE_DIR: false
ENABLE_AUTH_FILE: false
NTFY_ENABLE_METRICS: "{{ .Values.metrics.main.enabled }}"
# NTFY_CACHE_DURATION: "12h"
# NTFY_KEEPALIVE_INTERVAL: "45s"
# NTFY_MANAGER_INTERVAL: "1m"
# NTFY_GLOBAL_TOPIC_LIMIT: 15000
# NTFY_VISITOR_SUBSCRIPTION_LIMIT: 30
# NTFY_VISITOR_ATTACHMENT_TOTAL_SIZE_LIMIT: "100M"
# NTFY_VISITOR_ATTACHMENT_DAILY_BANDWIDTH_LIMIT: "500M"
# NTFY_VISITOR_REQUEST_LIMIT_BURST: 60
# NTFY_VISITOR_REQUEST_LIMIT_REPLENISH: "5s"
# NTFY_VISITOR_REQUEST_LIMIT_EXEMPT_HOSTS: ""
# NTFY_VISITOR_EMAIL_LIMIT_BURST: 16
# NTFY_VISITOR_EMAIL_LIMIT_REPLENISH: "1h"
# NTFY_ATTACHMENT_TOTAL_SIZE_LIMIT: "5G"
# NTFY_ATTACHMENT_FILE_SIZE_LIMIT: "15M"
# NTFY_ATTACHMENT_EXPIRY_DURATION: "3h"
# NTFY_AUTH_DEFAULT_ACCESS: "read-write"
# NTFY_SMTP_SENDER_ADDR: ""
# NTFY_SMTP_SENDER_USER: ""
# NTFY_SMTP_SENDER_PASS: ""
# NTFY_SMTP_SENDER_FROM: ""
# NTFY_SMTP_SERVER_LISTEN: ""
# NTFY_SMTP_SERVER_DOMAIN: ""
# NTFY_SMTP_SERVER_ADDR_PREFIX: ""
envFrom:
- configMapRef:
name: "ntfy"
metrics:
main:
# -- Enable and configure a Prometheus serviceMonitor for the chart under this key.
# @default -- See values.yaml
enabled: false
type: "servicemonitor"
endpoints:
- port: main
path: /metrics
# -- Enable and configure Prometheus Rules for the chart under this key.
# @default -- See values.yaml
prometheusRule:
enabled: false
labels: {}
# -- Configure additionial rules for the chart under this key.
# @default -- See prometheusrules.yaml
rules: []
# - alert: UnifiPollerAbsent
# annotations:
# description: Unifi Poller has disappeared from Prometheus service discovery.
# summary: Unifi Poller is down.
# expr: |
# absent(up{job=~".*unifi-poller.*"} == 1)
# for: 5m
# labels:
# severity: critical