fix: use explicit localhost for docreader health probes

This commit is contained in:
sn1p4am
2026-04-16 14:09:36 +08:00
committed by lyingbug
parent 2beb64c429
commit 0785a498e9
4 changed files with 5 additions and 5 deletions

View File

@@ -150,7 +150,7 @@ services:
- MINERU_ENDPOINT=${MINERU_ENDPOINT:-}
- MAX_FILE_SIZE_MB=${MAX_FILE_SIZE_MB:-}
healthcheck:
test: ["CMD", "grpc_health_probe", "-addr=:50051"]
test: ["CMD", "grpc_health_probe", "-addr=localhost:50051"]
interval: 30s
timeout: 10s
retries: 3

View File

@@ -171,7 +171,7 @@ services:
- DOCREADER_IMAGE_OUTPUT_DIR=/tmp/docreader
- MAX_FILE_SIZE_MB=${MAX_FILE_SIZE_MB:-}
healthcheck:
test: ["CMD", "grpc_health_probe", "-addr=:50051"]
test: ["CMD", "grpc_health_probe", "-addr=localhost:50051"]
interval: 30s
timeout: 10s
retries: 3

View File

@@ -229,7 +229,7 @@ DocReader 服务配置了健康检查:
```yaml
healthcheck:
test: ["CMD", "grpc_health_probe", "-addr=:50051"]
test: ["CMD", "grpc_health_probe", "-addr=localhost:50051"]
interval: 30s
timeout: 10s
retries: 3

View File

@@ -55,7 +55,7 @@ spec:
exec:
command:
- grpc_health_probe
- -addr=:50051
- -addr=localhost:50051
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
@@ -64,7 +64,7 @@ spec:
exec:
command:
- grpc_health_probe
- -addr=:50051
- -addr=localhost:50051
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 3