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 @@
{{/*
Tempo common PodDisruptionBudget definition
Params:
ctx = . context
component = name of the component
*/}}
{{- define "tempo.lib.podDisruptionBudget" -}}
{{- $componentSection := include "tempo.componentSectionFromName" . }}
{{ with (index $.ctx.Values $componentSection) }}
{{- if .podDisruptionBudget -}}
apiVersion: {{ include "tempo.podDisruptionBudget.apiVersion" $.ctx }}
kind: PodDisruptionBudget
metadata:
name: {{ include "tempo.resourceName" (dict "ctx" $.ctx "component" $.component) }}
labels:
{{- include "tempo.labels" (dict "ctx" $.ctx "component" $.component) | nindent 4 }}
namespace: {{ $.ctx.Release.Namespace | quote }}
spec:
selector:
matchLabels:
{{- include "tempo.selectorLabels" (dict "ctx" $.ctx "component" $.component) | nindent 6 }}
{{ toYaml .podDisruptionBudget | indent 2 }}
{{- end -}}
{{- end -}}
{{- end -}}
@@ -0,0 +1,74 @@
{{/*
Tempo common ServiceMonitor definition
Params:
ctx = . context
component = name of the component
memberlist = true/false, whether component is part of memberlist
*/}}
{{- define "tempo.lib.serviceMonitor" -}}
{{- with .ctx.Values.metaMonitoring.serviceMonitor }}
{{- if .enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ include "tempo.resourceName" $ }}
namespace: {{ .namespace | default $.ctx.Release.Namespace | quote }}
labels:
{{- include "tempo.labels" $ | nindent 4 }}
{{- with .labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
namespaceSelector:
{{- if .namespaceSelector }}
{{- toYaml .namespaceSelector | nindent 4 }}
{{- else }}
matchNames:
- {{ $.ctx.Release.Namespace }}
{{- end }}
selector:
matchLabels:
{{- include "tempo.selectorLabels" $ | nindent 6 }}
matchExpressions:
- key: prometheus.io/service-monitor
operator: NotIn
values:
- "false"
endpoints:
- port: http-metrics
{{- with .interval }}
interval: {{ . }}
{{- end }}
{{- with .scrapeTimeout }}
scrapeTimeout: {{ . }}
{{- end }}
relabelings:
- action: replace
sourceLabels: [job]
replacement: "{{ $.ctx.Release.Namespace }}/{{ $.component }}"
targetLabel: job
{{- if kindIs "string" .clusterLabel }}
- replacement: "{{ .clusterLabel | default (include "tempo.clusterName" $.ctx) }}"
targetLabel: cluster
{{- end }}
{{- with .relabelings }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .metricRelabelings }}
metricRelabelings:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .scheme }}
scheme: {{ . }}
{{- end }}
{{- with .tlsConfig }}
tlsConfig:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end -}}
{{- end -}}
{{- end -}}