declarative relay deployment on hetzner relay-eval.waow.tech
atproto relay
14
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: split liveness/readiness probes, raise tolerances

- liveness: /_healthz (constant-time, no DB), 30s initial delay, 10 failures
- readiness: /_readyz (DB check), 10s initial delay, 5 failures
- prevents restart storms from blocking dependency checks

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz e111e476 dc29553a

+14 -4
+14 -4
deploy/zlay-values.yaml
··· 25 25 - secretRef: 26 26 name: zlay-secret 27 27 probes: 28 - liveness: &probes 28 + liveness: 29 29 enabled: true 30 30 custom: true 31 31 spec: 32 32 httpGet: 33 - path: /_health 33 + path: /_healthz 34 + port: 3000 35 + initialDelaySeconds: 30 36 + periodSeconds: 30 37 + timeoutSeconds: 5 38 + failureThreshold: 10 39 + readiness: 40 + enabled: true 41 + custom: true 42 + spec: 43 + httpGet: 44 + path: /_readyz 34 45 port: 3000 35 46 initialDelaySeconds: 10 36 47 periodSeconds: 15 37 48 timeoutSeconds: 5 38 - failureThreshold: 10 39 - readiness: *probes 49 + failureThreshold: 5 40 50 resources: 41 51 requests: 42 52 memory: 1Gi