Skip to content

Commit

Permalink
[Hotfix] Fix liveness and readiness uri for amoro deployment (#3045)
Browse files Browse the repository at this point in the history
Fix liveness and readiness path for amoro deployment
  • Loading branch information
zhoujinsong committed Jul 16, 2024
1 parent 7856711 commit bac3fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/amoro/templates/amoro-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit bac3fb6

Please sign in to comment.