init helm charts

This commit is contained in:
2025-01-10 13:45:35 +01:00
commit 0ab0d5facc
50 changed files with 2249 additions and 0 deletions

View File

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