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,24 @@
{{- /*
Test connection to PocketBase instances
Run with: helm test <release-name>
*/ -}}
{{- range .Values.instances }}
---
apiVersion: v1
kind: Pod
metadata:
name: "{{ $.Release.Name }}-test-connection-{{ .id }}"
labels:
app: pocketbase
instance: {{ .id }}
{{- include "pocketbase.labels" $ | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['-q', '--spider', 'http://pocketbase-{{ .id }}/api/health']
restartPolicy: Never
{{- end }}