diff --git a/charts/milvus/Chart.yaml b/charts/milvus/Chart.yaml index 6095853b..ccb9e3dc 100644 --- a/charts/milvus/Chart.yaml +++ b/charts/milvus/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v1 name: milvus -appVersion: "2.2.8" +appVersion: "2.2.9" kubeVersion: "^1.10.0-0" description: Milvus is an open-source vector database built to power AI applications and vector similarity search. -version: 4.0.22 +version: 4.0.23 keywords: - milvus - elastic diff --git a/charts/milvus/README.md b/charts/milvus/README.md index 2e6a9ebd..2c4932a9 100644 --- a/charts/milvus/README.md +++ b/charts/milvus/README.md @@ -152,7 +152,7 @@ The following table lists the configurable parameters of the Milvus Service and |-------------------------------------------|-----------------------------------------------|---------------------------------------------------------| | `cluster.enabled` | Enable or disable Milvus Cluster mode | `true` | | `image.all.repository` | Image repository | `milvusdb/milvus` | -| `image.all.tag` | Image tag | `v2.2.7` | +| `image.all.tag` | Image tag | `v2.2.9` | | `image.all.pullPolicy` | Image pull policy | `IfNotPresent` | | `image.all.pullSecrets` | Image pull secrets | `{}` | | `image.tools.repository` | Config image repository | `milvusdb/milvus-config-tool` | diff --git a/charts/milvus/templates/indexnode-deployment.yaml b/charts/milvus/templates/indexnode-deployment.yaml index 7aac8d34..3de250d5 100644 --- a/charts/milvus/templates/indexnode-deployment.yaml +++ b/charts/milvus/templates/indexnode-deployment.yaml @@ -133,7 +133,7 @@ spec: - mountPath: /milvus/tools name: tools {{- if .Values.indexNode.disk.enabled }} - - mountPath: /milvus/data + - mountPath: /var/lib/milvus/data name: disk {{- end }} diff --git a/charts/milvus/templates/querynode-deployment.yaml b/charts/milvus/templates/querynode-deployment.yaml index a89c4a09..e7f65612 100644 --- a/charts/milvus/templates/querynode-deployment.yaml +++ b/charts/milvus/templates/querynode-deployment.yaml @@ -133,7 +133,7 @@ spec: - mountPath: /milvus/tools name: tools {{- if .Values.queryNode.disk.enabled }} - - mountPath: /milvus/data + - mountPath: /var/lib/milvus/data name: disk {{- end }} diff --git a/charts/milvus/templates/standalone-deployment.yaml b/charts/milvus/templates/standalone-deployment.yaml index f13c4249..26c59f59 100644 --- a/charts/milvus/templates/standalone-deployment.yaml +++ b/charts/milvus/templates/standalone-deployment.yaml @@ -138,7 +138,7 @@ spec: subPath: {{ .Values.log.persistence.persistentVolumeClaim.subPath | default "" }} {{- end }} {{- if .Values.standalone.disk.enabled }} - - mountPath: /milvus/data + - mountPath: /var/lib/milvus/data name: disk {{- end }} diff --git a/charts/milvus/values.yaml b/charts/milvus/values.yaml index 7260426f..72c703f1 100644 --- a/charts/milvus/values.yaml +++ b/charts/milvus/values.yaml @@ -5,7 +5,7 @@ cluster: image: all: repository: milvusdb/milvus - tag: v2.2.8 + tag: v2.2.9 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace.