This commit is contained in:
2026-01-14 12:37:31 +08:00
commit 01d1a49a59
22 changed files with 1037 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{{- /*
Generate services for each PocketBase instance
*/ -}}
{{- $root := . }}
{{- range .Values.instances }}
---
apiVersion: v1
kind: Service
metadata:
name: pocketbase-{{ .id }}
labels:
app: pocketbase
instance: {{ .id }}
{{- include "pocketbase.labels" $root | nindent 4 }}
annotations:
{{- toYaml $root.Values.ingress.annotations | nindent 4 }}
spec:
type: ClusterIP
selector:
app: pocketbase
instance: {{ .id }}
ports:
- name: http
port: 80
targetPort: http
protocol: TCP
{{- end }}