charts/nzbhydra.old/templates/tests/test-connection.yaml
2023-09-07 23:58:45 +08:00

16 lines
386 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "nzbhydra.fullname" . }}-test-connection"
labels:
{{ include "nzbhydra.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "nzbhydra.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never