add owncloud

This commit is contained in:
2025-01-14 02:47:06 +01:00
parent e691c05c27
commit d1b6afa523
14 changed files with 547 additions and 7 deletions

View File

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