2021-04-27 11:27:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
|
|
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
|
|
# or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
|
|
|
2021-11-09 11:18:47 +00:00
|
|
|
# Exit immediately for non zero status
|
2021-12-14 03:41:10 +00:00
|
|
|
# set -e
|
2021-11-10 11:14:14 +00:00
|
|
|
|
|
|
|
# Print commands
|
2021-04-27 11:27:50 +00:00
|
|
|
set -x
|
|
|
|
|
2021-11-16 13:30:23 +00:00
|
|
|
|
2021-07-01 03:10:11 +00:00
|
|
|
MILVUS_HELM_REPO="https://github.com/milvus-io/milvus-helm.git"
|
2021-04-27 11:27:50 +00:00
|
|
|
MILVUS_HELM_RELEASE_NAME="${MILVUS_HELM_RELEASE_NAME:-milvus-testing}"
|
2021-06-21 04:00:06 +00:00
|
|
|
MILVUS_CLUSTER_ENABLED="${MILVUS_CLUSTER_ENABLED:-false}"
|
2021-04-27 11:27:50 +00:00
|
|
|
MILVUS_IMAGE_REPO="${MILVUS_IMAGE_REPO:-milvusdb/milvus}"
|
|
|
|
MILVUS_IMAGE_TAG="${MILVUS_IMAGE_TAG:-latest}"
|
|
|
|
MILVUS_HELM_NAMESPACE="${MILVUS_HELM_NAMESPACE:-default}"
|
2021-12-06 02:17:41 +00:00
|
|
|
# Increase timeout from 500 to 800 because pulsar has one more node now
|
2021-12-03 10:27:38 +00:00
|
|
|
MILVUS_INSTALL_TIMEOUT="${MILVUS_INSTALL_TIMEOUT:-800s}"
|
2021-04-27 11:27:50 +00:00
|
|
|
|
|
|
|
# Delete any previous Milvus cluster
|
|
|
|
echo "Deleting previous Milvus cluster with name=${MILVUS_HELM_RELEASE_NAME}"
|
2021-07-30 03:41:22 +00:00
|
|
|
if ! (helm uninstall -n "${MILVUS_HELM_NAMESPACE}" "${MILVUS_HELM_RELEASE_NAME}" > /dev/null 2>&1); then
|
2021-04-27 11:27:50 +00:00
|
|
|
echo "No existing Milvus cluster with name ${MILVUS_HELM_RELEASE_NAME}. Continue..."
|
|
|
|
else
|
2021-09-30 13:58:15 +00:00
|
|
|
MILVUS_LABELS1="app.kubernetes.io/instance=${MILVUS_HELM_RELEASE_NAME}"
|
|
|
|
MILVUS_LABELS2="release=${MILVUS_HELM_RELEASE_NAME}"
|
|
|
|
kubectl delete pvc -n "${MILVUS_HELM_NAMESPACE}" $(kubectl get pvc -n "${MILVUS_HELM_NAMESPACE}" -l "${MILVUS_LABELS1}" -o jsonpath='{range.items[*]}{.metadata.name} ') || true
|
|
|
|
kubectl delete pvc -n "${MILVUS_HELM_NAMESPACE}" $(kubectl get pvc -n "${MILVUS_HELM_NAMESPACE}" -l "${MILVUS_LABELS2}" -o jsonpath='{range.items[*]}{.metadata.name} ') || true
|
2021-04-27 11:27:50 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${TEST_ENV}" == "kind-metallb" ]]; then
|
|
|
|
MILVUS_SERVICE_TYPE="${MILVUS_SERVICE_TYPE:-LoadBalancer}"
|
|
|
|
else
|
|
|
|
MILVUS_SERVICE_TYPE="${MILVUS_SERVICE_TYPE:-ClusterIP}"
|
|
|
|
fi
|
|
|
|
|
2021-11-16 13:30:23 +00:00
|
|
|
if [[ -n "${DISABLE_KIND:-}" ]]; then
|
|
|
|
# Use cluster IP to deploy milvus when kinD cluster is removed
|
|
|
|
MILVUS_SERVICE_TYPE="ClusterIP"
|
|
|
|
fi
|
|
|
|
|
2021-11-11 07:10:49 +00:00
|
|
|
# Get Milvus Chart from git
|
2021-05-14 10:12:03 +00:00
|
|
|
if [[ ! -d "${MILVUS_HELM_CHART_PATH:-}" ]]; then
|
|
|
|
TMP_DIR="$(mktemp -d)"
|
2021-10-09 11:18:57 +00:00
|
|
|
git clone --depth=1 -b "${MILVUS_HELM_BRANCH:-master}" "${MILVUS_HELM_REPO}" "${TMP_DIR}"
|
2021-07-01 03:10:11 +00:00
|
|
|
MILVUS_HELM_CHART_PATH="${TMP_DIR}/charts/milvus"
|
2021-05-14 10:12:03 +00:00
|
|
|
fi
|
2021-04-27 11:27:50 +00:00
|
|
|
|
2021-11-09 11:18:47 +00:00
|
|
|
# Create namespace when it does not exist
|
2021-07-30 03:41:22 +00:00
|
|
|
kubectl create namespace "${MILVUS_HELM_NAMESPACE}" > /dev/null 2>&1 || true
|
2021-04-27 11:27:50 +00:00
|
|
|
|
2021-11-16 13:30:23 +00:00
|
|
|
echo "[debug] cluster type is ${MILVUS_SERVICE_TYPE}"
|
2021-10-09 11:18:57 +00:00
|
|
|
if [[ "${MILVUS_CLUSTER_ENABLED}" == "true" ]]; then
|
2021-09-30 13:58:15 +00:00
|
|
|
helm install --wait --timeout "${MILVUS_INSTALL_TIMEOUT}" \
|
2021-06-17 13:13:59 +00:00
|
|
|
--set image.all.repository="${MILVUS_IMAGE_REPO}" \
|
|
|
|
--set image.all.tag="${MILVUS_IMAGE_TAG}" \
|
|
|
|
--set image.all.pullPolicy="${MILVUS_PULL_POLICY:-Always}" \
|
2021-06-21 04:00:06 +00:00
|
|
|
--set cluster.enabled="${MILVUS_CLUSTER_ENABLED}" \
|
2021-06-17 13:13:59 +00:00
|
|
|
--set service.type="${MILVUS_SERVICE_TYPE}" \
|
|
|
|
--namespace "${MILVUS_HELM_NAMESPACE}" \
|
|
|
|
"${MILVUS_HELM_RELEASE_NAME}" \
|
|
|
|
${@:-} "${MILVUS_HELM_CHART_PATH}"
|
2021-09-30 13:58:15 +00:00
|
|
|
else
|
2021-10-09 11:18:57 +00:00
|
|
|
helm install --wait --timeout "${MILVUS_INSTALL_TIMEOUT}" \
|
|
|
|
--set image.all.repository="${MILVUS_IMAGE_REPO}" \
|
|
|
|
--set image.all.tag="${MILVUS_IMAGE_TAG}" \
|
|
|
|
--set image.all.pullPolicy="${MILVUS_PULL_POLICY:-Always}" \
|
|
|
|
--set cluster.enabled="${MILVUS_CLUSTER_ENABLED}" \
|
|
|
|
--set pulsar.enabled=false \
|
|
|
|
--set minio.mode=standalone \
|
|
|
|
--set etcd.replicaCount=1 \
|
|
|
|
--set service.type="${MILVUS_SERVICE_TYPE}" \
|
|
|
|
--namespace "${MILVUS_HELM_NAMESPACE}" \
|
|
|
|
"${MILVUS_HELM_RELEASE_NAME}" \
|
|
|
|
${@:-} "${MILVUS_HELM_CHART_PATH}"
|
2021-09-30 13:58:15 +00:00
|
|
|
fi
|
2021-12-14 03:41:10 +00:00
|
|
|
|
|
|
|
exitcode=$?
|
2021-12-20 11:06:29 +00:00
|
|
|
# List pod list & pvc list before exit after helm install
|
2021-12-14 03:41:10 +00:00
|
|
|
kubectl get pods -n ${MILVUS_HELM_NAMESPACE} | grep ${MILVUS_HELM_RELEASE_NAME}
|
|
|
|
kubectl get pvc -n ${MILVUS_HELM_NAMESPACE} | grep ${MILVUS_HELM_RELEASE_NAME} | awk '{$3=null;print $0}'
|
|
|
|
exit ${exitcode}
|