{{- if .Values.ingress.enabled -}} {{- $fullName := include "grafana.fullname" . -}} {{- $servicePort := .Values.service.port -}} {{- $ingressPath := .Values.ingress.path -}} {{- $ingressPathType := .Values.ingress.pathType -}} {{- $extraPaths := .Values.ingress.extraPaths -}} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ $fullName }} namespace: {{ include "grafana.namespace" . }} labels: {{- include "grafana.labels" . | nindent 4 }} {{- with .Values.ingress.labels }} {{- toYaml . | nindent 4 }} {{- end }} {{- with .Values.ingress.annotations }} annotations: {{- range $key, $value := . }} {{ $key }}: {{ tpl $value $ | quote }} {{- end }} {{- end }} spec: {{- if .Values.ingress.ingressClassName }} ingressClassName: {{ .Values.ingress.ingressClassName }} {{- end }} {{- with .Values.ingress.tls }} tls: {{- tpl (toYaml .) $ | nindent 4 }} {{- end }} rules: {{- if .Values.ingress.hosts }} {{- range .Values.ingress.hosts }} - host: {{ tpl . $ | quote }} http: paths: {{- with $extraPaths }} {{- toYaml . | nindent 10 }} {{- end }} - path: {{ $ingressPath }} pathType: {{ $ingressPathType }} backend: service: name: {{ $fullName }} port: number: {{ $servicePort }} {{- end }} {{- else }} - http: paths: - backend: service: name: {{ $fullName }} port: number: {{ $servicePort }} {{- with $ingressPath }} path: {{ . }} {{- end }} pathType: {{ $ingressPathType }} {{- end -}} {{- end }}