chore: update format

This commit is contained in:
Sun-ZhenXing
2025-11-10 19:55:44 +08:00
parent febd1601a2
commit 42aa5c40d6
92 changed files with 660 additions and 613 deletions

View File

@@ -20,11 +20,11 @@ services:
deploy:
resources:
limits:
cpus: '1.0'
memory: 1G
cpus: ${POSTGRES_MLFLOW_CPU_LIMIT:-1.0}
memory: ${POSTGRES_MLFLOW_MEMORY_LIMIT:-1G}
reservations:
cpus: '0.5'
memory: 512M
cpus: ${POSTGRES_MLFLOW_CPU_RESERVATION:-0.5}
memory: ${POSTGRES_MLFLOW_MEMORY_RESERVATION:-512M}
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-mlflow}"]
interval: 10s
@@ -48,11 +48,11 @@ services:
deploy:
resources:
limits:
cpus: '1.0'
memory: 1G
cpus: ${MINIO_MLFLOW_CPU_LIMIT:-1.0}
memory: ${MINIO_MLFLOW_MEMORY_LIMIT:-1G}
reservations:
cpus: '0.5'
memory: 512M
cpus: ${MINIO_MLFLOW_CPU_RESERVATION:-0.5}
memory: ${MINIO_MLFLOW_MEMORY_RESERVATION:-512M}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
@@ -108,11 +108,11 @@ services:
deploy:
resources:
limits:
cpus: '2.0'
memory: 2G
cpus: ${MLFLOW_CPU_LIMIT:-2.0}
memory: ${MLFLOW_MEMORY_LIMIT:-2G}
reservations:
cpus: '1.0'
memory: 1G
cpus: ${MLFLOW_CPU_RESERVATION:-1.0}
memory: ${MLFLOW_MEMORY_RESERVATION:-1G}
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:5000/health"]
interval: 30s