From a7f3d432eec5cf56f9bc50b3faad177158d5c5f2 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Fri, 6 Mar 2026 22:51:38 +0000 Subject: [PATCH] [ci skip] expand Prometheus iSCSI PVC to 30Gi for historical data restore --- stacks/platform/modules/monitoring/prometheus.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/platform/modules/monitoring/prometheus.tf b/stacks/platform/modules/monitoring/prometheus.tf index 89e6fbb7..62f7ca5e 100644 --- a/stacks/platform/modules/monitoring/prometheus.tf +++ b/stacks/platform/modules/monitoring/prometheus.tf @@ -11,7 +11,7 @@ resource "kubernetes_persistent_volume_claim" "prometheus_server_pvc" { storage_class_name = "iscsi-truenas" resources { requests = { - storage = "15Gi" + storage = "30Gi" } } }