improwised-charts/charts/healthchecks/templates/ingress.yaml

37 lines
963 B
YAML

{{- if .Values.ingress.enabled -}}
{{- $fullName := include "healthchecks.fullname" . -}}
{{- $svcPort := .Values.service.port -}}
apiVersion: {{ include "ingress.apiVersion" . }}
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
{{- include "healthchecks.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: {{- include "ingress.backend" (dict "serviceName" $fullName "servicePort" $svcPort "context" $) | nindent 10 }}
{{- end }}
{{- end }}
{{- end }}