rancher-partner-charts/charts/kubecost/cost-analyzer/1.83.201/templates/cost-analyzer-ingress-templ...

41 lines
1.0 KiB
YAML
Raw Normal View History

2021-08-26 12:34:20 +00:00
{{- if .Values.ingress -}}
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "cost-analyzer.fullname" . -}}
{{- $serviceName := include "cost-analyzer.serviceName" . -}}
{{- $ingressPaths := .Values.ingress.paths -}}
apiVersion: {{ include "cost-analyzer.ingress.apiVersion" . }}
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.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 }}
- path: {{ . }}
backend:
serviceName: {{ $serviceName }}
servicePort: tcp-frontend
{{- end }}
{{- end }}
{{- end }}
{{- end }}