Skip to content

Commit

Permalink
Merge pull request #131 from LoveEachDay/fix-upgrade-error-with-strea…
Browse files Browse the repository at this point in the history
…ming-node

Fix upgrade error with --reuse-values
  • Loading branch information
yellow-shine authored Oct 17, 2024
2 parents ee94899 + 4119748 commit e46de96
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion charts/milvus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: milvus
appVersion: "2.4.13"
kubeVersion: "^1.10.0-0"
description: Milvus is an open-source vector database built to power AI applications and vector similarity search.
version: 4.2.13
version: 4.2.14
keywords:
- milvus
- elastic
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/datacoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
args: [ "milvus", "run", "datacoord" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/datanode-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ spec:
args: [ "milvus", "run", "datanode" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/indexcoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
args: [ "milvus", "run", "indexcoord" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/indexnode-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:
args: [ "milvus", "run", "indexnode" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/mixcoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
args: [ "milvus", "run", "mixture", "-rootcoord", "-querycoord", "-datacoord", "-indexcoord" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/proxy-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ spec:
args: [ "milvus", "run", "proxy" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/querycoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
args: [ "milvus", "run", "querycoord" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/querynode-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:
args: [ "milvus", "run", "querynode" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/rootcoord-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
args: [ "milvus", "run", "rootcoord" ]
{{- end }}
env:
{{- if .Values.streaming.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled }}
- name: MILVUS_STREAMING_SERVICE_ENABLED
value: "1"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/streamingnode-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.streaming.enabled .Values.cluster.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled .Values.cluster.enabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/milvus/templates/streamingnode-svc.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.metrics.enabled }}
{{- if and .Values.streaming.enabled .Values.cluster.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled .Values.cluster.enabled }}
apiVersion: v1
kind: Service
metadata:
Expand Down

0 comments on commit e46de96

Please sign in to comment.