[skip ci]Update offline installation doc format (#8639)

Signed-off-by: Weida Zhu <weida.zhu@zilliz.com>
pull/8642/head
zwd1208 2021-09-27 10:13:56 +08:00 committed by GitHub
parent b71bffe26f
commit b9f18d83d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -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:
### 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:
@ -32,12 +32,12 @@ Milvus installation may fail when images are not properly loaded from public Doc
helm repo update
```
2. Get Kubernetes manifest of Milvus standalone
2. Get Kubernetes manifests of Milvus standalone
```shell
helm template my-release milvus/milvus > milvus_manifest.yaml
```
&nbsp;&nbsp;&nbsp;or get Kubernetes manifest of Milvus cluster
&nbsp;&nbsp;&nbsp;or get Kubernetes manifests of Milvus cluster
```shell
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 with Docker Compose
With Docker Compose
```shell
docker-compose -f docker-compose.yml up -d
```
- Install on Kubernetes
On Kubernetes
```shell
kubectl apply -f milvus_manifest.yaml
@ -75,13 +75,13 @@ kubectl apply -f milvus_manifest.yaml
## Uninstall Milvus
- Uninstall with Docker Compose
With Docker Compose
```shell
docker-compose -f docker-compose.yml down
```
- Uninstall on Kubernetes
On Kubernetes
```shell
kubectl delete -f milvus_manifest.yaml