Skip to content

Commit

Permalink
Move to kube-system namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgin314 committed Feb 27, 2025
1 parent 53693cf commit 783654c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ resource "helm_release" "tempo" {
timeout = 300

set {
name = "tempo.storage.trace.s3.insecure"
value = "false"
name = "replicas"
value = "3"
}
set {
name = "tempo.replicas"
value = "2"
name = "tempo.storage.trace.s3.insecure"
value = "false"
}
set {
name = "tempo.repository"
Expand All @@ -72,6 +72,10 @@ resource "helm_release" "tempo" {
name = "tempo.storage.trace.s3.endpoint"
value = "s3.${var.region}.amazonaws.com"
}
set {
name = "tempo.metricsGenerator.enabled"
value = true
}
set {
name = "tempo.metricsGenerator.remoteWriteUrl"
value = "http://${var.prometheus_svc}.${var.prometheus_namespace}:${var.prometheus_port}/api/v1/write"
Expand Down
2 changes: 1 addition & 1 deletion tempo_values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
tempo:
storage:
trace:
Expand All @@ -10,6 +9,7 @@ tempo:
value: "9411"
metricsGenerator:
enabled: true
remoteWriteUrl: http://prometheus-server.prometheus:80/api/v1/write
reportingEnabled: false

serviceAccount:
Expand Down

0 comments on commit 783654c

Please sign in to comment.