mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
[skip ci]Update offline installation doc format (#8639)
Signed-off-by: Weida Zhu <weida.zhu@zilliz.com>
This commit is contained in:
parent
b71bffe26f
commit
b9f18d83d1
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
Milvus installation may fail when images are not properly loaded from public Docker registries. To pull all images and save them into a directory that can be moved to the target host and loaded manually, perform the following procedures:
|
Milvus installation may fail when images are not properly loaded from public Docker registries. To pull all images and save them into a directory that can be moved to the target host and loaded manually, perform the following procedures:
|
||||||
|
|
||||||
### Step 1: Save Milvus manifest and Docker images
|
### Step 1: Save Milvus manifests and Docker images
|
||||||
|
|
||||||
#### If you install Milvus with the **docker-compose.yml** file, use these command:
|
#### If you install Milvus with the **docker-compose.yml** file, use these command:
|
||||||
|
|
||||||
@ -32,12 +32,12 @@ Milvus installation may fail when images are not properly loaded from public Doc
|
|||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Get Kubernetes manifest of Milvus standalone
|
2. Get Kubernetes manifests of Milvus standalone
|
||||||
```shell
|
```shell
|
||||||
helm template my-release milvus/milvus > milvus_manifest.yaml
|
helm template my-release milvus/milvus > milvus_manifest.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
or get Kubernetes manifest of Milvus cluster
|
or get Kubernetes manifests of Milvus cluster
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
helm template --set cluster.enabled=true my-release milvus/milvus > milvus_manifest.yaml
|
helm template --set cluster.enabled=true my-release milvus/milvus > milvus_manifest.yaml
|
||||||
@ -61,13 +61,13 @@ for image in $(find . -type f -name "*.tar.gz") ; do gunzip -c $image | docker l
|
|||||||
|
|
||||||
## Install Milvus
|
## Install Milvus
|
||||||
|
|
||||||
- Install with Docker Compose
|
With Docker Compose
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker-compose -f docker-compose.yml up -d
|
docker-compose -f docker-compose.yml up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
- Install on Kubernetes
|
On Kubernetes
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
kubectl apply -f milvus_manifest.yaml
|
kubectl apply -f milvus_manifest.yaml
|
||||||
@ -75,13 +75,13 @@ kubectl apply -f milvus_manifest.yaml
|
|||||||
|
|
||||||
## Uninstall Milvus
|
## Uninstall Milvus
|
||||||
|
|
||||||
- Uninstall with Docker Compose
|
With Docker Compose
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker-compose -f docker-compose.yml down
|
docker-compose -f docker-compose.yml down
|
||||||
```
|
```
|
||||||
|
|
||||||
- Uninstall on Kubernetes
|
On Kubernetes
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
kubectl delete -f milvus_manifest.yaml
|
kubectl delete -f milvus_manifest.yaml
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user