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,18 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "owncloud.fullname" . }}
labels:
{{- include "owncloud.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
{{- if and (eq .Values.service.type "NodePort") .Values.service.nodePort }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
selector:
{{- include "owncloud.selectorLabels" . | nindent 4 }}