From 76d2989e85ee7822850f838655a6471a55d14fec Mon Sep 17 00:00:00 2001 From: Matthieu Lamalle Date: Mon, 12 Feb 2024 14:41:44 +0100 Subject: [PATCH] Revert "fix(dispatcher): liveness probe must use the container port" This reverts commit 0dbd5dd551420e10fe11726247769d7f55821a85. --- .../resources/hydra-dispatcher-deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/hydra-dispatcher/resources/hydra-dispatcher-deployment.yaml b/resources/hydra-dispatcher/resources/hydra-dispatcher-deployment.yaml index 410872c..4425640 100644 --- a/resources/hydra-dispatcher/resources/hydra-dispatcher-deployment.yaml +++ b/resources/hydra-dispatcher/resources/hydra-dispatcher-deployment.yaml @@ -49,21 +49,21 @@ spec: name: hydra-dispatcher-apps resources: {} - - image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2023.12.15-develop.903.b675347 + - image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2023.12.15-develop.903.b675347 imagePullPolicy: Always name: hydra-dispatcher-nginx args: ["/usr/sbin/nginx"] readinessProbe: httpGet: path: /health - port: 8080 + port: 80 initialDelaySeconds: 5 timeoutSeconds: 5 periodSeconds: 10 livenessProbe: httpGet: path: /health - port: 8080 + port: 80 initialDelaySeconds: 15 timeoutSeconds: 5 periodSeconds: 15