From 29d9f27052c8e497c7135a01e83089d48e1cf498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20D=C3=A9siles?= <1536672+cdesiles@users.noreply.github.com> Date: Fri, 29 May 2026 21:41:04 +0200 Subject: [PATCH] fix: ntfy probe without curl available --- roles/ntfy/templates/ntfy.yaml.j2 | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/roles/ntfy/templates/ntfy.yaml.j2 b/roles/ntfy/templates/ntfy.yaml.j2 index 748b96c..268c9fe 100644 --- a/roles/ntfy/templates/ntfy.yaml.j2 +++ b/roles/ntfy/templates/ntfy.yaml.j2 @@ -26,9 +26,12 @@ spec: - name: ntfy-data mountPath: /var/lib/ntfy livenessProbe: - httpGet: - path: /v1/health - port: 80 + exec: + command: + - wget + - -q + - -O- + - http://localhost:80/v1/health initialDelaySeconds: 40 periodSeconds: 30 timeoutSeconds: 10