feat: Add Helm chart for Home Assistant MCP server with deployment, service, ingress, and values configuration

This commit is contained in:
sha
2026-04-18 18:44:19 +03:00
parent 4ebe5c4612
commit caf7925566
5 changed files with 2 additions and 2 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