feat: Add Signal Gateway Helm chart with deployment, service, ingress, and values configuration

This commit is contained in:
sha
2026-03-31 03:44:39 +03:00
parent ebbb41ce9d
commit eac8bc21c2
5 changed files with 127 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: {{ .Values.port }}
protocol: TCP