{{- /* Test connection to PocketBase instances Run with: helm test */ -}} {{- 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 }}