Skip to content

Commit

Permalink
Bump milvus version to v2.4.6 (#108)
Browse files Browse the repository at this point in the history
Signed-off-by: Edward Zeng <[email protected]>
  • Loading branch information
LoveEachDay authored Jul 16, 2024
1 parent 2252056 commit 0f54460
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 130 deletions.
4 changes: 2 additions & 2 deletions charts/milvus/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v1
name: milvus
appVersion: "2.4.5"
appVersion: "2.4.6"
kubeVersion: "^1.10.0-0"
description: Milvus is an open-source vector database built to power AI applications and vector similarity search.
version: 4.1.36
version: 4.2.0
keywords:
- milvus
- elastic
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,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.4.5` |
| `image.all.tag` | Image tag | `v2.4.6` |
| `image.all.pullPolicy` | Image pull policy | `IfNotPresent` |
| `image.all.pullSecrets` | Image pull secrets | `{}` |
| `image.tools.repository` | Config image repository | `milvusdb/milvus-config-tool` |
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/datacoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: datacoord
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.dataCoordinator.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "datacoord" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "datacoord" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "datacoord" ]
args: [ "milvus", "run", "datacoord" ]
{{- end }}
env:
{{- if .Values.dataCoordinator.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/datanode-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: datanode
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.dataNode.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "datanode" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "datanode" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "datanode" ]
args: [ "milvus", "run", "datanode" ]
{{- end }}
env:
{{- if .Values.dataNode.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/indexcoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: indexcoord
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.indexCoordinator.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "indexcoord" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "indexcoord" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "indexcoord" ]
args: [ "milvus", "run", "indexcoord" ]
{{- end }}
env:
{{- if .Values.indexCoordinator.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/indexnode-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,24 +57,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: indexnode
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.indexNode.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "indexnode" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "indexnode" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "indexnode" ]
args: [ "milvus", "run", "indexnode" ]
{{- end }}
env:
{{- if .Values.indexNode.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/mixcoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: mixcoord
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.mixCoordinator.heaptrack.enabled }}
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "/milvus/tools/run-helm.sh", "milvus", "run", "mixture", "-rootcoord", "-querycoord", "-datacoord", "-indexcoord" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "mixture", "-rootcoord", "-querycoord", "-datacoord", "-indexcoord" ]
{{- else }}
args: [ "milvus", "run", "mixture", "-rootcoord", "-querycoord", "-datacoord", "-indexcoord" ]
{{- end }}
env:
{{- if .Values.mixCoordinator.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/proxy-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: proxy
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.proxy.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "proxy" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "proxy" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "proxy" ]
args: [ "milvus", "run", "proxy" ]
{{- end }}
env:
{{- if .Values.proxy.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/querycoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: querycoord
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.queryCoordinator.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "querycoord" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "querycoord" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "querycoord" ]
args: [ "milvus", "run", "querycoord" ]
{{- end }}
env:
{{- if .Values.queryCoordinator.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/querynode-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,24 +57,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: querynode
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.queryNode.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "querynode" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "querynode" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "querynode" ]
args: [ "milvus", "run", "querynode" ]
{{- end }}
env:
{{- if .Values.queryNode.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/rootcoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: rootcoord
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.rootCoordinator.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "rootcoord" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "rootcoord" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "rootcoord" ]
args: [ "milvus", "run", "rootcoord" ]
{{- end }}
env:
{{- if .Values.rootCoordinator.heaptrack.enabled }}
Expand Down
14 changes: 2 additions & 12 deletions charts/milvus/templates/standalone-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,14 @@ spec:
- mountPath: /milvus/tools
name: tools
{{- end }}
- name: config
command:
- /cp
- /run-helm.sh,/merge
- /milvus/tools/run-helm.sh,/milvus/tools/merge
image: "{{ .Values.image.tools.repository }}:{{ .Values.image.tools.tag }}"
imagePullPolicy: {{ .Values.image.tools.pullPolicy}}
volumeMounts:
- mountPath: /milvus/tools
name: tools
containers:
- name: standalone
image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}"
imagePullPolicy: {{ .Values.image.all.pullPolicy }}
{{- if .Values.standalone.heaptrack.enabled }}
args: [ "/milvus/tools/run-helm.sh", "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "standalone" ]
args: [ "/milvus/tools/heaptrack/bin/heaptrack", "milvus", "run", "standalone" ]
{{- else }}
args: [ "/milvus/tools/run-helm.sh", "milvus", "run", "standalone" ]
args: [ "milvus", "run", "standalone" ]
{{- end }}
ports:
- name: milvus
Expand Down
15 changes: 8 additions & 7 deletions charts/milvus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cluster:
image:
all:
repository: milvusdb/milvus
tag: v2.4.5
tag: v2.4.6
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
Expand Down Expand Up @@ -649,23 +649,23 @@ pulsar:
broker:
repository: apachepulsar/pulsar
pullPolicy: IfNotPresent
tag: 2.8.2
tag: 2.9.5
autorecovery:
repository: apachepulsar/pulsar
tag: 2.8.2
tag: 2.9.5
pullPolicy: IfNotPresent
zookeeper:
repository: apachepulsar/pulsar
pullPolicy: IfNotPresent
tag: 2.8.2
tag: 2.9.5
bookie:
repository: apachepulsar/pulsar
pullPolicy: IfNotPresent
tag: 2.8.2
tag: 2.9.5
proxy:
repository: apachepulsar/pulsar
pullPolicy: IfNotPresent
tag: 2.8.2
tag: 2.9.5
pulsar_manager:
repository: apachepulsar/pulsar-manager
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -783,6 +783,7 @@ pulsar:
type: ClusterIP
ports:
pulsar: 6650
http: 8080
configData:
PULSAR_MEM: >
-Xms2048m -Xmx2048m
Expand All @@ -801,7 +802,7 @@ pulsar:
image:
# the image used for running `pulsar-cluster-initialize` job
repository: apachepulsar/pulsar
tag: 2.8.2
tag: 2.9.5


## Configuration values for the kafka dependency
Expand Down

0 comments on commit 0f54460

Please sign in to comment.