Add SOGo via Helm

This commit is contained in:
Ruben Hensen
2026-01-26 17:40:22 +01:00
parent 5dc2657524
commit b81130d02c
11 changed files with 446 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{{- if .Values.ingress.enabled }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "sogo.fullname" . }}
labels:
{{- include "sogo.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
ingressClassName: {{ .Values.ingress.className }}
tls:
- hosts:
- {{ .Values.ingress.host }}
secretName: {{ .Values.ingress.tls.secretName }}
rules:
- host: {{ .Values.ingress.host }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ include "sogo.fullname" . }}
port:
number: {{ .Values.service.port }}
{{- end }}