chore: Add initial Helm chart for mcp-server-qdrant with deployment, service, ingress, and values configuration

This commit is contained in:
sha
2026-07-09 15:33:21 +03:00
parent 5943d195d6
commit 0d5f374f0a
5 changed files with 175 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}
labels:
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
type: ClusterIP
selector:
app: {{ .Release.Name }}
ports:
- name: http
port: {{ .Values.port }}
targetPort: http
protocol: TCP