Files
2026-08-26 03:39:42 +05:30

20 lines
550 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ template "tempo.resourceName" (dict "ctx" . "component" "compactor") }}
labels:
{{- include "tempo.labels" (dict "ctx" . "component" "compactor") | nindent 4 }}
{{- with .Values.compactor.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: ClusterIP
ports:
- name: http-metrics
port: 3100
targetPort: 3100
protocol: TCP
selector:
{{- include "tempo.selectorLabels" (dict "ctx" . "component" "compactor") | nindent 4 }}