Fix Paperclip health check endpoint path
Change health check from /health to /api/health to match the actual API endpoint. The server is healthy but the readiness/liveness probes were failing because they were checking the wrong path. Resolves: DEV-387 Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
c7c0ac2998
commit
c0aecf125a
1 changed files with 2 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ spec:
|
||||||
mountPath: /paperclip
|
mountPath: /paperclip
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /health
|
path: /api/health
|
||||||
port: 3100
|
port: 3100
|
||||||
initialDelaySeconds: 20
|
initialDelaySeconds: 20
|
||||||
periodSeconds: 10
|
periodSeconds: 10
|
||||||
|
|
@ -94,7 +94,7 @@ spec:
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /health
|
path: /api/health
|
||||||
port: 3100
|
port: 3100
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
periodSeconds: 30
|
periodSeconds: 30
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue