Skip to content

Commit

Permalink
New Release
Browse files Browse the repository at this point in the history
  • Loading branch information
wemogy-admin authored Feb 16, 2024
2 parents 879bb7a + 09464ac commit 866727b
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/terraform-aks/templates/helm_prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,40 @@ resource "helm_release" "prometheus" {
value = "10Gi"
type = "string"
}

set {
name = "grafana.persistence.enabled"
value = "true"
type = "string"
}

set {
name = "grafana.persistence.type"
value = "sts"
type = "string"
}

set {
name = "grafana.persistence.storageClassName"
value = "default"
type = "string"
}

set {
name = "grafana.persistence.accessModes[0]"
value = "ReadWriteOnce"
type = "string"
}

set {
name = "grafana.persistence.size"
value = "20Gi"
type = "string"
}

set {
name = "grafana.persistence.finalizers[0]"
value = "kubernetes.io/pvc-protection"
type = "string"
}
}

0 comments on commit 866727b

Please sign in to comment.