This commit is contained in:
2025-01-26 18:02:40 +01:00
parent c257abb24f
commit 27c9391ec2
19 changed files with 515 additions and 65 deletions

View File

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