From bac3fb6b3613a7ea9c1076d05ca6f9237f600072 Mon Sep 17 00:00:00 2001 From: ZhouJinsong Date: Tue, 16 Jul 2024 19:58:19 +0800 Subject: [PATCH] [Hotfix] Fix liveness and readiness uri for amoro deployment (#3045) Fix liveness and readiness path for amoro deployment --- charts/amoro/templates/amoro-deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/amoro/templates/amoro-deployment.yaml b/charts/amoro/templates/amoro-deployment.yaml index da9397b719..bce9dc1bb0 100644 --- a/charts/amoro/templates/amoro-deployment.yaml +++ b/charts/amoro/templates/amoro-deployment.yaml @@ -83,7 +83,7 @@ spec: {{/* TODO If Support Replica can be use more than 1 */}} {{- if .Values.livenessProbe.enabled }} livenessProbe: httpGet: - path: /health/status + path: /ams/v1/health/status port: rest initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.livenessProbe.periodSeconds }} @@ -94,7 +94,7 @@ spec: {{/* TODO If Support Replica can be use more than 1 */}} {{- if .Values.readinessProbe.enabled }} readinessProbe: httpGet: - path: /versionInfo + path: ams/v1/versionInfo port: rest initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.readinessProbe.periodSeconds }}