44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
{{- range $name, $route := .Values.route }}
|
|
{{- if $route.enabled -}}
|
|
---
|
|
apiVersion: {{ $route.apiVersion | default "gateway.networking.k8s.io/v1" }}
|
|
kind: {{ $route.kind | default "HTTPRoute" }}
|
|
metadata:
|
|
{{- with $route.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
name: {{ template "grafana.fullname" $ }}{{ if ne $name "main" }}-{{ $name }}{{ end }}
|
|
namespace: {{ template "grafana.namespace" $ }}
|
|
labels:
|
|
app: {{ template "grafana.name" $ }}-prometheus
|
|
{{- include "grafana.labels" $ | nindent 4 }}
|
|
{{- with $route.labels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- with $route.parentRefs }}
|
|
parentRefs:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with $route.hostnames }}
|
|
hostnames:
|
|
{{- tpl (toYaml .) $ | nindent 4 }}
|
|
{{- end }}
|
|
rules:
|
|
{{- if $route.additionalRules }}
|
|
{{- tpl (toYaml $route.additionalRules) $ | nindent 4 }}
|
|
{{- end }}
|
|
- backendRefs:
|
|
- name: {{ include "grafana.fullname" $ }}
|
|
port: {{ $.Values.service.port }}
|
|
{{- with $route.filters }}
|
|
filters:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with $route.matches }}
|
|
matches:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }} |