diff --git a/charts/tempo-standalone/Chart.yaml b/charts/tempo-standalone/Chart.yaml new file mode 100644 index 0000000..7d5fa02 --- /dev/null +++ b/charts/tempo-standalone/Chart.yaml @@ -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 \ No newline at end of file diff --git a/charts/tempo-standalone/examples/values.yaml b/charts/tempo-standalone/examples/values.yaml new file mode 100644 index 0000000..a22ce2e --- /dev/null +++ b/charts/tempo-standalone/examples/values.yaml @@ -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 \ No newline at end of file diff --git a/charts/tempo-standalone/values.yaml b/charts/tempo-standalone/values.yaml new file mode 100644 index 0000000..58bb933 --- /dev/null +++ b/charts/tempo-standalone/values.yaml @@ -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 \ No newline at end of file