Files
datapod-helm/pocketbase/templates/tests/test-connection.yaml
2026-01-14 12:37:31 +08:00

25 lines
556 B
YAML

{{- /*
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 }}