feat: Add initial Zigbee2MQTT Helm chart with deployment, service, ingress, and values configuration

This commit is contained in:
sha
2026-05-19 18:12:52 +03:00
parent 892674153f
commit 9bfa308bc4
5 changed files with 160 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: {{ .Values.service.type }}
selector:
app: {{ .Release.Name }}
ports:
- name: http
port: {{ .Values.service.port }}
targetPort: http
protocol: TCP