diff --git a/owncloud/templates/ingress.yaml b/owncloud/templates/ingress.yaml index 2fa1525..8bc87a4 100644 --- a/owncloud/templates/ingress.yaml +++ b/owncloud/templates/ingress.yaml @@ -1,6 +1,11 @@ {{- if .Values.ingress.enabled -}} {{- $fullName := include "owncloud.fullname" . -}} {{- $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 -}} apiVersion: networking.k8s.io/v1 {{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} @@ -12,12 +17,15 @@ kind: Ingress metadata: name: {{ $fullName }} labels: - {{- include "owncloud.labels" . | nindent 4 }} + {{- include "jackett.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} annotations: - cert-manager.io/cluster-issuer: letsencrypt - nginx.ingress.kubernetes.io/proxy-body-size: 1000m + {{- toYaml . | nindent 4 }} + {{- end }} spec: - ingressClassName: nginx + {{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }} + ingressClassName: {{ .Values.ingress.className }} + {{- end }} {{- if .Values.ingress.tls }} tls: {{- range .Values.ingress.tls }} @@ -34,10 +42,20 @@ spec: http: paths: {{- range .paths }} - - path: {{ . }} + - path: {{ .path }} + {{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }} + pathType: {{ .pathType }} + {{- end }} backend: + {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} serviceName: {{ $fullName }} servicePort: {{ $svcPort }} + {{- end }} {{- end }} {{- end }} - {{- end }} +{{- end }} diff --git a/owncloud/values.yaml b/owncloud/values.yaml index 4912273..fe17aee 100644 --- a/owncloud/values.yaml +++ b/owncloud/values.yaml @@ -71,13 +71,13 @@ service: ingress: enabled: true - annotations: - # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" + className: "nginx" + annotations: {} hosts: - host: "owncloud.chart.example" - paths: ["/*"] - servicePort: 80 + paths: + - path: "/" + pathType: Prefix tls: - hosts: - "owncloud.chart.example"