2026-01-14 21:45:05 +00:00
|
|
|
apiVersion: v1
|
|
|
|
|
kind: Pod
|
|
|
|
|
metadata:
|
2026-02-19 11:38:10 +01:00
|
|
|
name: "{{ include "bentopdf.name" . }}-test-connection"
|
2026-01-14 21:45:05 +00:00
|
|
|
labels:
|
2026-02-19 11:06:50 +01:00
|
|
|
{{- include "bentopdf.labels" . | nindent 4 }}
|
2026-01-14 21:45:05 +00:00
|
|
|
annotations:
|
|
|
|
|
"helm.sh/hook": test
|
|
|
|
|
spec:
|
|
|
|
|
containers:
|
|
|
|
|
- name: wget
|
|
|
|
|
image: busybox
|
|
|
|
|
command: ['wget']
|
2026-02-19 11:38:10 +01:00
|
|
|
args: ['-qO-', 'http://{{ include "bentopdf.name" . }}:{{ .Values.service.port }}/']
|
2026-01-14 21:45:05 +00:00
|
|
|
restartPolicy: Never
|