Skip to main content

ntfy

ntfy connections enable sending push notifications via the ntfy pub/sub notification service.

Used By

FieldDescriptionScheme
host*

ntfy server URL (e.g., https://ntfy.sh or self-hosted)

string

topic*

Topic to publish messages to

string

password

Password for authentication (if required)

EnvVar

username

Username for authentication (if required)

EnvVar

Examples

Public ntfy.sh
ntfy-public.yaml
apiVersion: mission-control.flanksource.com/v1
kind: Connection
metadata:
name: ntfy-alerts
spec:
ntfy:
host: https://ntfy.sh
topic: my-alerts-topic
Self-Hosted with Authentication
ntfy-self-hosted.yaml
apiVersion: mission-control.flanksource.com/v1
kind: Connection
metadata:
name: ntfy-private
spec:
ntfy:
host: https://ntfy.internal.example.com
topic: infrastructure-alerts
username:
valueFrom:
secretKeyRef:
name: ntfy-credentials
key: username
password:
valueFrom:
secretKeyRef:
name: ntfy-credentials
key: password

Next Steps