From a9f70e6e3c23076a2f6fb452251d870f00c27860 Mon Sep 17 00:00:00 2001 From: Jonny Ervine Date: Sat, 24 Feb 2024 21:14:22 +0800 Subject: [PATCH] fix health checks --- plexporter/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plexporter/templates/deployment.yaml b/plexporter/templates/deployment.yaml index 1da50fb..9175ed5 100644 --- a/plexporter/templates/deployment.yaml +++ b/plexporter/templates/deployment.yaml @@ -38,11 +38,11 @@ spec: protocol: TCP livenessProbe: httpGet: - path: / + path: /metrics port: metrics readinessProbe: httpGet: - path: / + path: /metrics port: metrics resources: {{- toYaml .Values.resources | nindent 12 }}