Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/tempo standalone #241

Merged
merged 4 commits into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions charts/tempo-standalone/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: v2
name: tempo-standalone
description: A Helm chart for tempo standalone
type: application
version: 1.0.0
appVersion: 1.0.0
dependencies:
- name: tempo
version: 1.10.1
repository: https://grafana.github.io/helm-charts
alias: tempo
tags:
- tempo
condition: tempo.enabled
25 changes: 25 additions & 0 deletions charts/tempo-standalone/examples/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
tempo:
enabled: true
fullnameOverride: tempo
tempo:
retention: 168h
resources:
requests:
cpu: 1
memory: 2Gi
limits:
cpu: 1
memory: 2Gi
securityContext:
privileged: true
runAsUser: 0
metricsGenerator:
enabled: true
remoteWriteUrl: "http://otel-prometheus.monitoring:9090/api/v1/write"

persistence:
enabled: true
storageClassName: buildpiper-storage

serviceMonitor:
enabled: true
18 changes: 18 additions & 0 deletions charts/tempo-standalone/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
tempo:
enabled: true
fullnameOverride: tempo
tempo:
retention: 168h
resources:
requests:
cpu: 1
memory: 2Gi
limits:
cpu: 1
memory: 2Gi

persistence:
enabled: true

serviceMonitor:
enabled: true
Loading