fix kubernetes ingress

This commit is contained in:
2025-01-14 20:29:07 +01:00
parent d86affbd29
commit fb8376914c
2 changed files with 29 additions and 11 deletions

View File

@ -1,6 +1,11 @@
{{- if .Values.ingress.enabled -}} {{- if .Values.ingress.enabled -}}
{{- $fullName := include "owncloud.fullname" . -}} {{- $fullName := include "owncloud.fullname" . -}}
{{- $svcPort := .Values.service.port -}} {{- $svcPort := .Values.service.port -}}
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}
{{- end }}
{{- end }}
{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}} {{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}}
apiVersion: networking.k8s.io/v1 apiVersion: networking.k8s.io/v1
{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} {{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
@ -12,12 +17,15 @@ kind: Ingress
metadata: metadata:
name: {{ $fullName }} name: {{ $fullName }}
labels: labels:
{{- include "owncloud.labels" . | nindent 4 }} {{- include "jackett.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }}
annotations: annotations:
cert-manager.io/cluster-issuer: letsencrypt {{- toYaml . | nindent 4 }}
nginx.ingress.kubernetes.io/proxy-body-size: 1000m {{- end }}
spec: spec:
ingressClassName: nginx {{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }}
ingressClassName: {{ .Values.ingress.className }}
{{- end }}
{{- if .Values.ingress.tls }} {{- if .Values.ingress.tls }}
tls: tls:
{{- range .Values.ingress.tls }} {{- range .Values.ingress.tls }}
@ -34,10 +42,20 @@ spec:
http: http:
paths: paths:
{{- range .paths }} {{- range .paths }}
- path: {{ . }} - path: {{ .path }}
{{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }}
pathType: {{ .pathType }}
{{- end }}
backend: backend:
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
service:
name: {{ $fullName }}
port:
number: {{ $svcPort }}
{{- else }}
serviceName: {{ $fullName }} serviceName: {{ $fullName }}
servicePort: {{ $svcPort }} servicePort: {{ $svcPort }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- end }}

View File

@ -71,13 +71,13 @@ service:
ingress: ingress:
enabled: true enabled: true
annotations: className: "nginx"
# kubernetes.io/ingress.class: nginx annotations: {}
# kubernetes.io/tls-acme: "true"
hosts: hosts:
- host: "owncloud.chart.example" - host: "owncloud.chart.example"
paths: ["/*"] paths:
servicePort: 80 - path: "/"
pathType: Prefix
tls: tls:
- hosts: - hosts:
- "owncloud.chart.example" - "owncloud.chart.example"