This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/binwiederhier/ntfy](https://ntfy.sh/) ([source](https://redirect.github.com/binwiederhier/ntfy)) | minor | `cd107fa` -> `5a05179` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>binwiederhier/ntfy (docker.io/binwiederhier/ntfy)</summary> ### [`v2.14.0`](https://redirect.github.com/binwiederhier/ntfy/releases/tag/v2.14.0) [Compare Source](https://redirect.github.com/binwiederhier/ntfy/compare/v2.13.0...v2.14.0) This release adds support for [declarative users](https://docs.ntfy.sh/config/#users-via-the-config), [declarative ACL entries](https://docs.ntfy.sh/config/#acl-entries-via-the-config) and [declarative tokens](https://docs.ntfy.sh/config/#tokens-via-the-config). This allows you to define users, ACL entries and tokens in the config file, which is useful for static deployments or deployments that use a configuration management system. It also adds support for [pre-defined templates](https://docs.ntfy.sh/publish/#pre-defined-templates) and [custom templates](https://docs.ntfy.sh/publish/#custom-templates) for enhanced JSON webhook support, as well as advanced [template functions](https://docs.ntfy.sh/publish/#template-functions) based on the [Sprig](https://redirect.github.com/Masterminds/sprig) functions. ❤️ If you like ntfy, **please consider sponsoring me** via [GitHub Sponsors](https://redirect.github.com/sponsors/binwiederhier), [Liberapay](https://en.liberapay.com/ntfy/), Bitcoin (`1626wjrw3uWk9adyjCfYwafw4sQWujyjn8`), or by buying a [paid plan via the web app](https://ntfy.sh/app). ntfy will always remain open source. **Features:** - [Declarative users](https://docs.ntfy.sh/config/#users-via-the-config), [declarative ACL entries](https://docs.ntfy.sh/config/#acl-entries-via-the-config) and [declarative tokens](https://docs.ntfy.sh/config/#tokens-via-the-config) ([#​464](https://redirect.github.com/binwiederhier/ntfy/issues/464), [#​1384](https://redirect.github.com/binwiederhier/ntfy/issues/1384), [#​1413](https://redirect.github.com/binwiederhier/ntfy/issues/1413), thanks to pinpox for reporting, to [@​wunter8](https://redirect.github.com/wunter8) for reviewing and implementing parts of it) - [Pre-defined templates](https://docs.ntfy.sh/publish/#pre-defined-templates) and [custom templates](https://docs.ntfy.sh/publish/#custom-templates) for enhanced JSON webhook support ([#​1390](https://redirect.github.com/binwiederhier/ntfy/issues/1390)) - Support of advanced [template functions](https://docs.ntfy.sh/publish/#template-functions) based on the [Sprig](https://redirect.github.com/Masterminds/sprig) library ([#​1121](https://redirect.github.com/binwiederhier/ntfy/issues/1121), thanks to [@​davidatkinsondoyle](https://redirect.github.com/davidatkinsondoyle) for reporting, to [@​wunter8](https://redirect.github.com/wunter8) for implementing, and to the Sprig team for their work) </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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
104 lines
3.8 KiB
YAML
104 lines
3.8 KiB
YAML
image:
|
|
repository: docker.io/binwiederhier/ntfy
|
|
tag: v2.14.0@sha256:5a051798d14138c3ecb12c038652558ab6a077e1aceeb867c151cbf5fa8451ef
|
|
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 }}'
|
|
|
|
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_UPSTREAM_BASE_URL: "https://ntfy.sh"
|
|
# 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
|