Skip to content

Probe(liveness/readiness)

## startup probe
startupProbe:
  httpGet:
    path: /status
    port: 80
  initialDelaySeconds: 5
  timeoutSeconds: 60

## liveness probe

livenessProbe:
  httpGet:
    path: /status
    port: 80
  initialDelaySeconds: 5
  timeoutSeconds: 60

## readiness probe

readinessProbe:
  httpGet:
    path: /status
    port: 80
  initialDelaySeconds: 5
  timeoutSeconds: 60

les probes ont un rĂ´le de healthcheck. Documentation