id: install_offline-helm.md label: 使用 Kubernetes 安装 order: 1

group: install_offline-docker.md

Install Milvus Offline

{{fragments/translation_needed.md}}

本篇文档将展示如何在离线环境中部署 Milvus。相关文件可在 GitHub 下载。

{{tab}}

Download files and images

To install Milvus offline, you need to pull and save all images in an online environment first, and then transfer them to the target host and load them manually.

  1. Add and update Milvus Helm repository locally.
  1. helm repo add milvus https://milvus-io.github.io/milvus-helm/
  2. helm repo update
  1. Get a Kubernetes manifest.
  • For Milvus standalone:
  1. helm template my-release --set cluster.enabled=false --set etcd.replicaCount=1 --set minio.mode=standalone --set pulsar.enabled=false milvus/milvus > milvus_manifest.yaml
  • For Milvus cluster:
  1. helm template my-release milvus/milvus > milvus_manifest.yaml

If you want to change multiple configurations, you can download a value.yaml file, specify configurations in it, and generate a manifest based on it.

  1. wget https://raw.githubusercontent.com/milvus-io/milvus-helm/master/charts/milvus/values.yaml
  2. helm template -f values.yaml my-release milvus/milvus > milvus_manifest.yaml
  1. Download requirement and script files.
  1. $ wget https://raw.githubusercontent.com/milvus-io/milvus/master/deployments/offline/requirements.txt
  2. $ wget https://raw.githubusercontent.com/milvus-io/milvus/master/deployments/offline/save_image.py
  1. Pull and save images.
  1. pip3 install -r requirements.txt
  2. python3 save_image.py --manifest milvus_manifest.yaml
The images are stored in the /images folder.
  1. Load the images.
  1. cd images/for image in $(find . -type f -name "*.tar.gz") ; do gunzip -c $image | docker load; done

Install Milvus offline

Having transferred the images to the target host, run the following command to install Milvus offline.

  1. kubectl apply -f milvus_manifest.yaml

Uninstall Milvus

To uninstall Milvus, run the following command.

  1. kubectl delete -f milvus_manifest.yaml