25 lines
556 B
YAML
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 }}
|