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,30 @@
{{- if .Values.enterprise.enabled -}}
{{ $dict := dict "ctx" . "component" "enterprise-gateway" }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "tempo.resourceName" $dict }}
labels:
{{- include "tempo.labels" $dict | nindent 4 }}
{{- with .Values.enterpriseGateway.service.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
annotations:
{{- toYaml .Values.enterpriseGateway.service.annotations | nindent 4 }}
namespace: {{ .Release.Namespace | quote }}
spec:
type: {{ .Values.enterpriseGateway.service.type }}
{{- with .Values.enterpriseGateway.service.clusterIP }}
clusterIP: {{ . }}
{{- end }}
{{- if and (eq "LoadBalancer" .Values.enterpriseGateway.service.type) .Values.enterpriseGateway.service.loadBalancerIP }}
loadBalancerIP: {{ .Values.enterpriseGateway.service.loadBalancerIP }}
{{- end }}
ports:
- port: {{ .Values.enterpriseGateway.service.port | default (include "tempo.serverHttpListenPort" . ) }}
protocol: TCP
name: http-metrics
targetPort: http-metrics
selector:
{{- include "tempo.selectorLabels" $dict | nindent 4 }}
{{- end -}}