Files
DataMate/deployment/helm/milvus/templates/streamingnode-svc.yaml
hhhhsc701 f3958f08d9 feature: 对接deer-flow (#54)
feature: 对接deer-flow
2025-11-04 20:30:40 +08:00

24 lines
581 B
YAML

{{- if .Values.metrics.enabled }}
{{- if and .Values.streaming .Values.streaming.enabled .Values.cluster.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ template "milvus.streamingnode.fullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{ include "milvus.labels" . | indent 4 }}
component: "streamingnode"
spec:
type: ClusterIP
clusterIP: None
ports:
- name: metrics
protocol: TCP
port: 9091
targetPort: metrics
selector:
{{ include "milvus.matchLabels" . | indent 4 }}
component: "streamingnode"
{{- end }}
{{- end }}