wkd4pgp/deploy/wkd4pgp/templates/ingress.yaml

52 lines
1.5 KiB
YAML

{{- if .Values.ingress.enabled -}}
{{- $fullName := include "wkd4pgp.fullname" . -}}
{{- $svcPort := .Values.service.port -}}
{{- $version := "extensions/v1beta1" -}}
{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}}
{{- $version = "networking.k8s.io/v1" -}}
{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
{{- $version = "networking.k8s.io/v1beta1" -}}
{{- end -}}
apiVersion: {{ $version }}
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
{{- include "wkd4pgp.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
{{- range .paths }}
- path: {{ .path }}
pathType: {{ .pathType }}
backend:
{{- if eq $version "networking.k8s.io/v1" }}
service:
name: {{ $fullName }}
port:
number: {{ $svcPort }}
{{- else -}}
serviceName: {{ $fullName }}
servicePort: {{ $svcPort }}
{{- end -}}
{{- end }}
{{- end }}
{{- end }}