mirror of https://github.com/portainer/k8s.git
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
{{- if .Values.ingress.enabled -}}
|
|
{{- $fullName := include "portainer.fullname" . -}}
|
|
{{- $tlsforced := .Values.tls.force -}}
|
|
{{- $apiVersion := include "ingress.apiVersion" . -}}
|
|
apiVersion: {{ $apiVersion }}
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ $fullName }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "portainer.labels" . | nindent 4 }}
|
|
{{- with .Values.ingress.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- with .Values.ingress.ingressClassName }}
|
|
ingressClassName: {{ . }}
|
|
{{- end }}
|
|
{{- 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 | default "/" }}
|
|
{{- if eq $apiVersion "networking.k8s.io/v1" }}
|
|
pathType: Prefix
|
|
{{- end }}
|
|
backend:
|
|
{{- if eq $apiVersion "networking.k8s.io/v1" }}
|
|
service:
|
|
name: {{ $fullName }}
|
|
port:
|
|
{{- if $tlsforced }}
|
|
number: {{ .port | default 9443 }}
|
|
{{- else }}
|
|
number: {{ .port | default 9000 }}
|
|
{{- end }}
|
|
{{- else }}
|
|
serviceName: {{ $fullName }}
|
|
{{- if $tlsforced }}
|
|
servicePort: {{ .port | default 9443 }}
|
|
{{- else }}
|
|
servicePort: {{ .port | default 9000 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }} |