mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 06:57:47 +01:00
feat(logs): add loki logging
This commit is contained in:
@@ -64,3 +64,21 @@ resource "kubectl_manifest" "argocd-tunnel-bind" {
|
||||
base_domain = var.cloudflare_domain
|
||||
})
|
||||
}
|
||||
|
||||
resource "helm_release" "loki_stack" {
|
||||
name = "loki-stack"
|
||||
repository = "https://grafana.github.io/helm-charts"
|
||||
chart = "loki-stack"
|
||||
namespace = kubernetes_namespace.monitoring.metadata[0].name
|
||||
version = "2.9.12"
|
||||
|
||||
set = [{
|
||||
name = "grafana.enabled"
|
||||
value = "false"
|
||||
}]
|
||||
|
||||
|
||||
depends_on = [
|
||||
helm_release.kube_prometheus_stack
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user