mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
Bump milvus version to v2.6.8 Signed-off-by: sre-ci-robot sre-ci-robot@users.noreply.github.com <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Version Bump Summary: Milvus v2.6.7 → v2.6.8 **Core Invariant**: This PR assumes v2.6.8 is a drop-in replacement for v2.6.7, maintaining API compatibility and deployment configuration compatibility across all environments (standalone, GPU, and cluster deployments). **Scope of Changes**: Updates Docker image version references from `milvusdb/milvus:v2.6.7` to `milvusdb/milvus:v2.6.8` across all deployment documentation and configuration files: - Binary deployment README - Standalone docker-compose.yml (CPU variant) - GPU standalone docker-compose.yml - Cluster distributed deployment inventory.ini **No Behavior Regression Risk**: Since this modifies only external artifact references (Docker image tags in deployment configs and documentation examples), not any runtime logic or data schemas, there is zero risk of data loss or operational regression. The semantic versioning convention (patch-level bump: v2.6.7 → v2.6.8) indicates this is a maintenance release with backward compatibility preserved. **Automation Context**: This is an automated version bump by sre-ci-robot, indicating a routine dependency update process rather than manual configuration changes. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
67 lines
1.8 KiB
YAML
67 lines
1.8 KiB
YAML
version: '3.5'
|
|
|
|
services:
|
|
etcd:
|
|
container_name: milvus-etcd
|
|
image: quay.io/coreos/etcd:v3.5.25
|
|
environment:
|
|
- ETCD_AUTO_COMPACTION_MODE=revision
|
|
- ETCD_AUTO_COMPACTION_RETENTION=1000
|
|
- ETCD_QUOTA_BACKEND_BYTES=4294967296
|
|
- ETCD_SNAPSHOT_COUNT=50000
|
|
volumes:
|
|
- ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/etcd:/etcd
|
|
command: etcd -advertise-client-urls=http://etcd:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd
|
|
healthcheck:
|
|
test: ["CMD", "etcdctl", "endpoint", "health"]
|
|
interval: 30s
|
|
timeout: 20s
|
|
retries: 3
|
|
|
|
minio:
|
|
container_name: milvus-minio
|
|
image: minio/minio:RELEASE.2024-05-28T17-19-04Z
|
|
environment:
|
|
MINIO_ACCESS_KEY: minioadmin
|
|
MINIO_SECRET_KEY: minioadmin
|
|
ports:
|
|
- "9001:9001"
|
|
- "9000:9000"
|
|
volumes:
|
|
- ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/minio:/minio_data
|
|
command: minio server /minio_data --console-address ":9001"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
interval: 30s
|
|
timeout: 20s
|
|
retries: 3
|
|
|
|
standalone:
|
|
container_name: milvus-standalone
|
|
image: milvusdb/milvus:v2.6.8
|
|
command: ["milvus", "run", "standalone"]
|
|
security_opt:
|
|
- seccomp:unconfined
|
|
environment:
|
|
MINIO_REGION: us-east-1
|
|
ETCD_ENDPOINTS: etcd:2379
|
|
MINIO_ADDRESS: minio:9000
|
|
volumes:
|
|
- ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/milvus:/var/lib/milvus
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9091/healthz"]
|
|
interval: 30s
|
|
start_period: 90s
|
|
timeout: 20s
|
|
retries: 3
|
|
ports:
|
|
- "19530:19530"
|
|
- "9091:9091"
|
|
depends_on:
|
|
- "etcd"
|
|
- "minio"
|
|
|
|
networks:
|
|
default:
|
|
name: milvus
|