Skip to content

Commit

Permalink
<doc>: Add docs for the minimal standalone
Browse files Browse the repository at this point in the history
Signed-off-by: Wang Yanfeng <wyfeng001@gmail.com>
  • Loading branch information
wyfeng001 committed Jan 9, 2024
1 parent 2d2bbea commit 3e7e9c6
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions charts/milvus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,46 @@ $ helm upgrade --install my-release --set cluster.enabled=false --set standalone
# Milvus Standalone with kafka as message queue
$ helm upgrade --install my-release --set cluster.enabled=false --set standalone.messageQueue=kafka --set etcd.replicaCount=1 --set pulsar.enabled=false --set kafka.enabled=true --set minio.mode=standalone milvus/milvus
```
If you need to use standalone mode with embedded ETCD and local storage (without starting MinIO and additional ETCD), you can use the following steps:

1. Prepare a values file
```
cat > values.yaml <<EOF
---
cluster:
enabled: false
service:
type: LoadBalancer
etcd:
enabled: false
pulsar:
enabled: false
minio:
enabled: false
extraConfigFiles:
user.yaml: |+
etcd:
use:
embed: true
data:
dir: /var/lib/milvus/etcd
common:
storageType: local
EOF
```

2. Helm install with this values file
```
helm upgrade --install -f values.yaml my-release milvus/milvus
```

> **Tip**: To list all releases, using `helm list`.
### Deploy Milvus with cluster mode
Expand Down

0 comments on commit 3e7e9c6

Please sign in to comment.