This is an automated email from the ASF dual-hosted git repository.

jinsongzhou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git


The following commit(s) were added to refs/heads/master by this push:
     new bac3fb6b3 [Hotfix] Fix liveness and readiness uri for amoro deployment 
(#3045)
bac3fb6b3 is described below

commit bac3fb6b3613a7ea9c1076d05ca6f9237f600072
Author: ZhouJinsong <[email protected]>
AuthorDate: Tue Jul 16 19:58:19 2024 +0800

    [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 da9397b71..bce9dc1bb 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 }}

Reply via email to