feat: Add Pocket ID Helm chart with deployment, service, ingress, and backup configurations

This commit is contained in:
sha
2026-04-19 03:11:23 +03:00
parent 93538e432d
commit e0c2043b08
10 changed files with 417 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.servicePort }}
targetPort: http
protocol: TCP