added repo

This commit is contained in:
Your Name
2026-08-26 03:39:42 +05:30
parent 45c25a95af
commit b8575bb8b9
6889 changed files with 1217125 additions and 0 deletions
@@ -0,0 +1,25 @@
{{- if .Values.gateway.route.enabled }}
kind: Route
apiVersion: route.openshift.io/v1
metadata:
name: {{ include "mimir.resourceName" (dict "ctx" . "component" "gateway") }}
labels:
{{- include "mimir.labels" (dict "ctx" . "component" "gateway") | nindent 4 }}
{{- with .Values.gateway.route.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
namespace: {{ .Release.Namespace | quote }}
spec:
host: {{ tpl .Values.gateway.route.host $ | quote }}
to:
kind: Service
name: {{ include "mimir.gateway.service.name" . }}
weight: 100
port:
targetPort: http-metrics
{{- with .Values.gateway.route.tls }}
tls:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}