From 3e5b05203b49afdad975092641ed554fff2cbbc2 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 12 Oct 2021 18:44:13 +0200 Subject: [PATCH] Revert "root: handle liveness probe in router" This reverts commit d39dbc7287b122a1844a782f276de230af91a98b. Signed-off-by: Jens Langhammer --- authentik/root/monitoring.py | 7 +++++++ authentik/root/urls.py | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/authentik/root/monitoring.py b/authentik/root/monitoring.py index f3c98b5f5..a70749880 100644 --- a/authentik/root/monitoring.py +++ b/authentik/root/monitoring.py @@ -58,6 +58,13 @@ class MetricsView(View): return ExportToDjangoView(request) +class LiveView(View): + """View for liveness probe, always returns Http 204""" + + def dispatch(self, request: HttpRequest) -> HttpResponse: + return HttpResponse(status=204) + + class ReadyView(View): """View for readiness probe, always returns Http 204, unless sql or redis is down""" diff --git a/authentik/root/urls.py b/authentik/root/urls.py index a35061665..2c5baf3b4 100644 --- a/authentik/root/urls.py +++ b/authentik/root/urls.py @@ -4,7 +4,7 @@ from structlog.stdlib import get_logger from authentik.core.views import error from authentik.lib.utils.reflection import get_apps -from authentik.root.monitoring import MetricsView, ReadyView +from authentik.root.monitoring import LiveView, MetricsView, ReadyView LOGGER = get_logger() @@ -44,5 +44,6 @@ for _authentik_app in get_apps(): urlpatterns += [ path("metrics/", MetricsView.as_view(), name="metrics"), + path("-/health/live/", LiveView.as_view(), name="health-live"), path("-/health/ready/", ReadyView.as_view(), name="health-ready"), ]