From 17ac9ca07e42e86c0a19a00be0200e2fc078828f Mon Sep 17 00:00:00 2001 From: quicksilver Date: Tue, 10 Aug 2021 13:57:27 +0800 Subject: [PATCH] Update Milvus offline installation README (#7028) Signed-off-by: quicksilver --- deployments/offline/README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/deployments/offline/README.md b/deployments/offline/README.md index 81e45156fc..ed8d767b7f 100644 --- a/deployments/offline/README.md +++ b/deployments/offline/README.md @@ -59,7 +59,8 @@ The Docker images will be stored under **images** directory. 2. Enter the following command to load the Docker images: ```shell -for image in $(find images/ -type f -name "*.tar.gz") ; do gunzip -c $image | docker load; done +cd images/ +for image in $(find . -type f -name "*.tar.gz") ; do gunzip -c $image | docker load; done ``` ## Install Milvus @@ -74,4 +75,18 @@ docker-compose -f docker-compose.yaml up -d ```shell kubectl apply -f milvus_manifest.yaml +``` + +## Uninstall Milvus + +- Uninstall Milvus with Docker Compose + +```shell +docker-compose -f docker-compose.yaml down +``` + +- Uninstall Milvus on Kubernetes + +```shell +kubectl delete -f milvus_manifest.yaml ``` \ No newline at end of file