Sangraham Logo

Health Checks & Readiness Probe

Health Checks

livenessProbe:
  httpGet:
    path: /health
    port: 3000
  initialDelaySeconds: 15
  timeoutSeconds: 30

Readiness Probe

readinessProbe:
  httpGet:
    path: /isReady
    port: 3000
  initialDelaySeconds: 15
  timeoutSeconds: 30