Skip to content

Commit

Permalink
Fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilWindle committed Jan 30, 2025
1 parent d686ddd commit eb66ffe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion spartan/metrics/values/prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ prometheus:

loki:
loki:
enabled: false
schemaConfig:
configs:
- from: "2024-04-01"
Expand Down Expand Up @@ -72,7 +73,7 @@ loki:
replicas: 6

minio:
enabled: true
enabled: false
persistence:
size: 64Gi

Expand Down
6 changes: 4 additions & 2 deletions spartan/terraform/deploy-metrics/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,18 @@ provider "google" {
region = var.region
}

resource "google_compute_global_address" "grafana_ip" {
resource "google_compute_address" "grafana_ip" {
provider = google
name = "grafana-ip"
address_type = "EXTERNAL"
region = var.region
}

resource "google_compute_global_address" "otel_collector_ip" {
resource "google_compute_address" "otel_collector_ip" {
provider = google
name = "otel-ip"
address_type = "EXTERNAL"
region = var.region
}

provider "kubernetes" {
Expand Down

0 comments on commit eb66ffe

Please sign in to comment.