mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 18:41:08 +02:00
fix(gpu-box): drop gpu-promtail healthcheck — image has no curl/wget/nc
Promtail v3.0.0 ships a minimal alpine-ish image with only the promtail binary. The original Mini compose's wget-based healthcheck errored out with 'executable file not found' on every tick, marking the container as 'unhealthy' for hours despite Loki actively receiving logs from it. Restart-policy unless-stopped catches real crashes anyway, so the healthcheck adds noise without value. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ceed8ccd64
commit
cd888cd54a
1 changed files with 1 additions and 6 deletions
|
|
@ -299,12 +299,7 @@ services:
|
|||
depends_on:
|
||||
loki:
|
||||
condition: service_started
|
||||
healthcheck:
|
||||
test: ['CMD', 'wget', '--no-verbose', '--tries=1', '--spider', 'http://127.0.0.1:9080/ready']
|
||||
interval: 60s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 15s
|
||||
# healthcheck disabled: promtail image has no curl/wget/nc; restart policy handles crashes
|
||||
|
||||
# ============================================
|
||||
# Phase 2d — Glitchtip mit dedizierter Postgres + Redis (2026-05-06)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue