chart-seafile: add

This commit is contained in:
2024-09-08 18:38:02 +02:00
parent 18d0ae563c
commit 940de05d13
15 changed files with 651 additions and 0 deletions

View File

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