Add qdrant chart 1.12.4

This commit is contained in:
wbsong111
2024-12-16 13:44:11 +09:00
parent 5c32e66996
commit bcf1c5bd5a
18 changed files with 1392 additions and 0 deletions
@@ -0,0 +1,22 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "qdrant.fullname" . }}-headless
labels:
{{- include "qdrant.labels" . | nindent 4 }}
app.kubernetes.io/component: cluster-discovery
{{- with .Values.service.additionalLabels }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
clusterIP: None
publishNotReadyAddresses: true
ports:
{{- range .Values.service.ports }}
- name: {{ .name }}
port: {{ .port }}
targetPort: {{ .targetPort }}
protocol: {{ .protocol | default "TCP" }}
{{- end }}
selector:
{{- include "qdrant.selectorLabels" . | nindent 4 }}