63 lines
1.8 KiB
YAML
63 lines
1.8 KiB
YAML
{{- if .Values.ingress -}}
|
|
{{- if .Values.ingress.enabled -}}
|
|
{{- $fullName := include "cost-analyzer.fullname" . -}}
|
|
{{- $serviceName := include "cost-analyzer.serviceName" . -}}
|
|
{{- $ingressPaths := .Values.ingress.paths -}}
|
|
{{- $ingressPathType := .Values.ingress.pathType -}}
|
|
{{- $apiV1 := false -}}
|
|
{{- if and (.Capabilities.APIVersions.Has "networking.k8s.io/v1") (semverCompare "^1.19-0" .Capabilities.KubeVersion.GitVersion) }}
|
|
{{- $apiV1 = true -}}
|
|
apiVersion: networking.k8s.io/v1
|
|
{{ else if .Capabilities.APIVersions.Has "networking.k8s.io/v1beta1" }}
|
|
apiVersion: networking.k8s.io/v1beta1
|
|
{{ else }}
|
|
apiVersion: extensions/v1beta1
|
|
{{ end -}}
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ $fullName }}
|
|
labels:
|
|
{{ include "cost-analyzer.commonLabels" . | nindent 4 }}
|
|
{{- with .Values.ingress.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if .Values.ingress.className }}
|
|
ingressClassName: {{ .Values.ingress.className }}
|
|
{{- 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: {{ . | quote }}
|
|
http:
|
|
paths:
|
|
{{- range $ingressPaths }}
|
|
{{- if $apiV1 }}
|
|
- path: {{ . }}
|
|
pathType: {{ $ingressPathType }}
|
|
backend:
|
|
service:
|
|
name: {{ $serviceName }}
|
|
port:
|
|
name: tcp-frontend
|
|
{{- else }}
|
|
- path: {{ . }}
|
|
backend:
|
|
serviceName: {{ $serviceName }}
|
|
servicePort: tcp-frontend
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|