first init

This commit is contained in:
2024-10-29 06:40:32 +01:00
commit 04b0eb4eb6
37 changed files with 4032 additions and 0 deletions

View File

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