chore: update format
This commit is contained in:
@@ -28,11 +28,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '0.25'
|
||||
memory: 256M
|
||||
cpus: ${ETCD_CPU_LIMIT:-0.25}
|
||||
memory: ${ETCD_MEMORY_LIMIT:-256M}
|
||||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
cpus: ${ETCD_CPU_RESERVATION:-0.1}
|
||||
memory: ${ETCD_MEMORY_RESERVATION:-128M}
|
||||
|
||||
minio:
|
||||
<<: *defaults
|
||||
@@ -56,11 +56,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
cpus: ${MINIO_STANDALONE_CPU_LIMIT:-0.5}
|
||||
memory: ${MINIO_STANDALONE_MEMORY_LIMIT:-512M}
|
||||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 256M
|
||||
cpus: ${MINIO_STANDALONE_CPU_RESERVATION:-0.1}
|
||||
memory: ${MINIO_STANDALONE_MEMORY_RESERVATION:-256M}
|
||||
|
||||
milvus-standalone:
|
||||
<<: *defaults
|
||||
@@ -92,11 +92,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '2.0'
|
||||
memory: 4G
|
||||
cpus: ${MILVUS_CPU_LIMIT:-2.0}
|
||||
memory: ${MILVUS_MEMORY_LIMIT:-4G}
|
||||
reservations:
|
||||
cpus: '1.0'
|
||||
memory: 2G
|
||||
cpus: ${MILVUS_CPU_RESERVATION:-1.0}
|
||||
memory: ${MILVUS_MEMORY_RESERVATION:-2G}
|
||||
|
||||
attu:
|
||||
<<: *defaults
|
||||
@@ -114,11 +114,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '0.25'
|
||||
memory: 256M
|
||||
cpus: ${ATTU_CPU_LIMIT:-0.25}
|
||||
memory: ${ATTU_MEMORY_LIMIT:-256M}
|
||||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
cpus: ${ATTU_CPU_RESERVATION:-0.1}
|
||||
memory: ${ATTU_MEMORY_RESERVATION:-128M}
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/"]
|
||||
interval: 30s
|
||||
|
||||
Reference in New Issue
Block a user