diff --git a/main.tf b/main.tf index 726adbd..9b1aa65 100644 --- a/main.tf +++ b/main.tf @@ -216,6 +216,36 @@ resource "helm_release" "loki" { value = var.rwo_storage_class } + ##### AutoScaling ##### + set { + name = "write.autoscaling.enabled" + value = true + } + set { + name = "read.autoscaling.enabled" + value = true + } + set { + name = "backend.autoscaling.enabled" + value = true + } + set { + name = "ingester.autoscaling.enabled" + value = true + } + set { + name = "distributor.autoscaling.enabled" + value = true + } + set { + name = "querier.autoscaling.enabled" + value = true + } + set { + name = "queryFrontend.autoscaling.enabled" + value = true + } + ##### Schema Config ##### set { name = "loki.schemaConfig.configs[0].from" diff --git a/variables.tf b/variables.tf index ecad875..31e18bb 100644 --- a/variables.tf +++ b/variables.tf @@ -54,14 +54,14 @@ variable "rwo_storage_class" { variable "loki_chart_version" { description = "Which version of the grafana/loki helm chart to use." type = string - default = "6.6.5" + default = "6.10.2" } # The [APP VERSION] associated with the helm chart. variable "loki_tag" { description = "The tag of the loki image to use." type = string - default = "3.0.0" + default = "3.1.1" } variable "canary_tag" { @@ -91,11 +91,11 @@ variable "memcached_tag" { variable "exporter_tag" { description = "The version of prom/memcached-exporter to use for the gateway." type = string - default = "v0.14.2" + default = "v0.14.4" } variable "sidecar_tag" { description = "The version of kiwigrid/k8s-sidecar to use for the gateway." type = string - default = "1.24.3" + default = "1.27.4" }