diff --git a/.claude/CLAUDE.md b/.claude/CLAUDE.md index 8d281743..165c21c1 100755 --- a/.claude/CLAUDE.md +++ b/.claude/CLAUDE.md @@ -177,7 +177,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "-data-proxmox" namespace = kubernetes_namespace..metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } @@ -213,7 +213,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "-data-encrypted" namespace = kubernetes_namespace..metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/actualbudget/factory/main.tf b/stacks/actualbudget/factory/main.tf index bd5728cb..d8d0f9ac 100644 --- a/stacks/actualbudget/factory/main.tf +++ b/stacks/actualbudget/factory/main.tf @@ -44,7 +44,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "actualbudget-${var.name}-data-encrypted" namespace = "actualbudget" annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/affine/main.tf b/stacks/affine/main.tf index 60c76cf9..b9dec0e3 100644 --- a/stacks/affine/main.tf +++ b/stacks/affine/main.tf @@ -155,7 +155,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "affine-data-encrypted" namespace = kubernetes_namespace.affine.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/beads-server/main.tf b/stacks/beads-server/main.tf index e24cdcde..3c44dcb1 100644 --- a/stacks/beads-server/main.tf +++ b/stacks/beads-server/main.tf @@ -43,7 +43,7 @@ resource "kubernetes_persistent_volume_claim" "dolt_data" { name = "dolt-data" namespace = kubernetes_namespace.beads.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "10Gi" } diff --git a/stacks/broker-sync/main.tf b/stacks/broker-sync/main.tf index 7c99a916..083ee699 100644 --- a/stacks/broker-sync/main.tf +++ b/stacks/broker-sync/main.tf @@ -61,7 +61,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "broker-sync-data-encrypted" namespace = kubernetes_namespace.broker_sync.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/changedetection/main.tf b/stacks/changedetection/main.tf index a7f2ef59..34cb456a 100644 --- a/stacks/changedetection/main.tf +++ b/stacks/changedetection/main.tf @@ -68,7 +68,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "changedetection-data-proxmox" namespace = kubernetes_namespace.changedetection.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "8Gi" } diff --git a/stacks/chrome-service/main.tf b/stacks/chrome-service/main.tf index dc7a5d80..b7319040 100644 --- a/stacks/chrome-service/main.tf +++ b/stacks/chrome-service/main.tf @@ -74,7 +74,7 @@ resource "kubernetes_persistent_volume_claim" "profile_encrypted" { name = "chrome-service-profile-encrypted" namespace = kubernetes_namespace.chrome_service.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "10Gi" } diff --git a/stacks/claude-agent-service/main.tf b/stacks/claude-agent-service/main.tf index 71ea0d7d..50a8d01d 100644 --- a/stacks/claude-agent-service/main.tf +++ b/stacks/claude-agent-service/main.tf @@ -198,7 +198,7 @@ resource "kubernetes_persistent_volume_claim" "workspace" { name = "claude-agent-workspace-encrypted" namespace = kubernetes_namespace.claude_agent.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "20Gi" } diff --git a/stacks/dbaas/modules/dbaas/main.tf b/stacks/dbaas/modules/dbaas/main.tf index dbd9530c..a0d34cf8 100644 --- a/stacks/dbaas/modules/dbaas/main.tf +++ b/stacks/dbaas/modules/dbaas/main.tf @@ -240,7 +240,7 @@ resource "kubernetes_stateful_set_v1" "mysql_standalone" { metadata { name = "data" annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "50Gi" } @@ -346,7 +346,7 @@ resource "kubernetes_persistent_volume_claim" "pgadmin_encrypted" { name = "dbaas-pgadmin-encrypted" namespace = kubernetes_namespace.dbaas.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/diun/main.tf b/stacks/diun/main.tf index e017f1f2..8f8c3baa 100644 --- a/stacks/diun/main.tf +++ b/stacks/diun/main.tf @@ -91,7 +91,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "diun-data-proxmox" namespace = kubernetes_namespace.diun.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/ebooks/main.tf b/stacks/ebooks/main.tf index a616e845..57d82af0 100644 --- a/stacks/ebooks/main.tf +++ b/stacks/ebooks/main.tf @@ -150,7 +150,7 @@ resource "kubernetes_persistent_volume_claim" "calibre_config_iscsi" { name = "ebooks-calibre-config-proxmox" namespace = kubernetes_namespace.ebooks.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "50%" "resize.topolvm.io/storage_limit" = "10Gi" } @@ -205,7 +205,7 @@ resource "kubernetes_persistent_volume_claim" "abs_config_proxmox" { name = "ebooks-abs-config-proxmox" namespace = kubernetes_namespace.ebooks.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/excalidraw/main.tf b/stacks/excalidraw/main.tf index 5e0e52bf..a84e76dd 100644 --- a/stacks/excalidraw/main.tf +++ b/stacks/excalidraw/main.tf @@ -32,7 +32,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "excalidraw-data-proxmox" namespace = kubernetes_namespace.excalidraw.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/f1-stream/main.tf b/stacks/f1-stream/main.tf index 8dab1205..856b8de8 100644 --- a/stacks/f1-stream/main.tf +++ b/stacks/f1-stream/main.tf @@ -83,7 +83,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "f1-stream-data-proxmox" namespace = kubernetes_namespace.f1-stream.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/forgejo/main.tf b/stacks/forgejo/main.tf index e7ddbc08..2cd2890f 100644 --- a/stacks/forgejo/main.tf +++ b/stacks/forgejo/main.tf @@ -30,7 +30,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "forgejo-data-encrypted" namespace = kubernetes_namespace.forgejo.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "50%" "resize.topolvm.io/storage_limit" = "50Gi" } diff --git a/stacks/freshrss/main.tf b/stacks/freshrss/main.tf index 5c7cfdca..fb724162 100644 --- a/stacks/freshrss/main.tf +++ b/stacks/freshrss/main.tf @@ -67,7 +67,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "freshrss-data-proxmox" namespace = kubernetes_namespace.immich.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } @@ -89,7 +89,7 @@ resource "kubernetes_persistent_volume_claim" "extensions_proxmox" { name = "freshrss-extensions-proxmox" namespace = kubernetes_namespace.immich.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/frigate/main.tf b/stacks/frigate/main.tf index f0b4cfb7..b43eb18d 100644 --- a/stacks/frigate/main.tf +++ b/stacks/frigate/main.tf @@ -33,7 +33,7 @@ resource "kubernetes_persistent_volume_claim" "config_encrypted" { name = "frigate-config-encrypted" namespace = kubernetes_namespace.frigate.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/grampsweb/main.tf b/stacks/grampsweb/main.tf index 47447132..c342f1d3 100644 --- a/stacks/grampsweb/main.tf +++ b/stacks/grampsweb/main.tf @@ -71,7 +71,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "grampsweb-data-encrypted" namespace = kubernetes_namespace.grampsweb.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/hackmd/main.tf b/stacks/hackmd/main.tf index 4d6d07ca..63b64865 100644 --- a/stacks/hackmd/main.tf +++ b/stacks/hackmd/main.tf @@ -30,7 +30,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "hackmd-data-encrypted" namespace = kubernetes_namespace.hackmd.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/headscale/modules/headscale/main.tf b/stacks/headscale/modules/headscale/main.tf index d60a5766..b445738e 100644 --- a/stacks/headscale/modules/headscale/main.tf +++ b/stacks/headscale/modules/headscale/main.tf @@ -54,7 +54,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "headscale-data-encrypted" namespace = kubernetes_namespace.headscale.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/health/main.tf b/stacks/health/main.tf index c98f922f..384146b4 100644 --- a/stacks/health/main.tf +++ b/stacks/health/main.tf @@ -30,7 +30,7 @@ resource "kubernetes_persistent_volume_claim" "uploads_encrypted" { name = "health-uploads-encrypted" namespace = kubernetes_namespace.health.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/hermes-agent/main.tf b/stacks/hermes-agent/main.tf index b64d4734..c27d5aaf 100644 --- a/stacks/hermes-agent/main.tf +++ b/stacks/hermes-agent/main.tf @@ -61,7 +61,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "hermes-agent-data-proxmox" namespace = kubernetes_namespace.hermes_agent.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/immich/main.tf b/stacks/immich/main.tf index 8f105fa0..36085b58 100644 --- a/stacks/immich/main.tf +++ b/stacks/immich/main.tf @@ -95,7 +95,7 @@ resource "kubernetes_persistent_volume_claim" "immich_postgresql_encrypted" { name = "immich-postgresql-data-encrypted" namespace = kubernetes_namespace.immich.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "20Gi" } diff --git a/stacks/insta2spotify/main.tf b/stacks/insta2spotify/main.tf index a1bc3b0e..c566c183 100644 --- a/stacks/insta2spotify/main.tf +++ b/stacks/insta2spotify/main.tf @@ -51,7 +51,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "insta2spotify-data-proxmox" namespace = kubernetes_namespace.insta2spotify.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/instagram-poster/modules/instagram-poster/main.tf b/stacks/instagram-poster/modules/instagram-poster/main.tf index 38cdec40..1278d576 100644 --- a/stacks/instagram-poster/modules/instagram-poster/main.tf +++ b/stacks/instagram-poster/modules/instagram-poster/main.tf @@ -187,7 +187,7 @@ resource "kubernetes_persistent_volume_claim" "data" { name = "instagram-poster-data" namespace = kubernetes_namespace.instagram_poster.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "20Gi" } diff --git a/stacks/isponsorblocktv/main.tf b/stacks/isponsorblocktv/main.tf index da440bc4..c2184a76 100644 --- a/stacks/isponsorblocktv/main.tf +++ b/stacks/isponsorblocktv/main.tf @@ -22,7 +22,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "isponsorblocktv-data-proxmox" namespace = kubernetes_namespace.isponsorblocktv.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/mailserver/modules/mailserver/main.tf b/stacks/mailserver/modules/mailserver/main.tf index 7744b202..a2e1c170 100644 --- a/stacks/mailserver/modules/mailserver/main.tf +++ b/stacks/mailserver/modules/mailserver/main.tf @@ -291,7 +291,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "mailserver-data-encrypted" namespace = kubernetes_namespace.mailserver.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "10Gi" } diff --git a/stacks/mailserver/modules/mailserver/roundcubemail.tf b/stacks/mailserver/modules/mailserver/roundcubemail.tf index eb76ada1..04b2f4b3 100644 --- a/stacks/mailserver/modules/mailserver/roundcubemail.tf +++ b/stacks/mailserver/modules/mailserver/roundcubemail.tf @@ -46,7 +46,7 @@ resource "kubernetes_persistent_volume_claim" "roundcube_html_encrypted" { name = "roundcubemail-html-encrypted" namespace = kubernetes_namespace.mailserver.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } @@ -68,7 +68,7 @@ resource "kubernetes_persistent_volume_claim" "roundcube_enigma_encrypted" { name = "roundcubemail-enigma-encrypted" namespace = kubernetes_namespace.mailserver.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/matrix/main.tf b/stacks/matrix/main.tf index 2c4f2048..e0029fa9 100644 --- a/stacks/matrix/main.tf +++ b/stacks/matrix/main.tf @@ -66,7 +66,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "matrix-data-encrypted" namespace = kubernetes_namespace.matrix.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/meshcentral/main.tf b/stacks/meshcentral/main.tf index 520fff1b..876a2d7f 100644 --- a/stacks/meshcentral/main.tf +++ b/stacks/meshcentral/main.tf @@ -31,7 +31,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "meshcentral-data-encrypted" namespace = kubernetes_namespace.meshcentral.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } @@ -53,7 +53,7 @@ resource "kubernetes_persistent_volume_claim" "files_encrypted" { name = "meshcentral-files-encrypted" namespace = kubernetes_namespace.meshcentral.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/n8n/main.tf b/stacks/n8n/main.tf index 567448d3..50eceb9b 100644 --- a/stacks/n8n/main.tf +++ b/stacks/n8n/main.tf @@ -124,7 +124,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "n8n-data-encrypted" namespace = kubernetes_namespace.n8n.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/navidrome/main.tf b/stacks/navidrome/main.tf index 68dd81e9..119b0e3e 100644 --- a/stacks/navidrome/main.tf +++ b/stacks/navidrome/main.tf @@ -68,7 +68,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "navidrome-data-proxmox" namespace = kubernetes_namespace.navidrome.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/nextcloud/main.tf b/stacks/nextcloud/main.tf index ef4e5295..d72a190e 100644 --- a/stacks/nextcloud/main.tf +++ b/stacks/nextcloud/main.tf @@ -194,7 +194,7 @@ resource "kubernetes_persistent_volume_claim" "nextcloud_data_encrypted" { name = "nextcloud-data-encrypted" namespace = kubernetes_namespace.nextcloud.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "20%" "resize.topolvm.io/storage_limit" = "100Gi" } diff --git a/stacks/novelapp/main.tf b/stacks/novelapp/main.tf index 9aab9144..8f3d0102 100644 --- a/stacks/novelapp/main.tf +++ b/stacks/novelapp/main.tf @@ -55,7 +55,7 @@ resource "kubernetes_persistent_volume_claim" "novelapp-data" { name = "novelapp-data-proxmox" namespace = kubernetes_namespace.novelapp.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/ntfy/main.tf b/stacks/ntfy/main.tf index 19e63f22..8399a39b 100644 --- a/stacks/ntfy/main.tf +++ b/stacks/ntfy/main.tf @@ -30,7 +30,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "ntfy-data-proxmox" namespace = kubernetes_namespace.ntfy.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/onlyoffice/main.tf b/stacks/onlyoffice/main.tf index d3466f98..f974f906 100644 --- a/stacks/onlyoffice/main.tf +++ b/stacks/onlyoffice/main.tf @@ -98,7 +98,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "onlyoffice-data-proxmox" namespace = kubernetes_namespace.onlyoffice.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/openclaw/main.tf b/stacks/openclaw/main.tf index 23edd09a..e944fcad 100644 --- a/stacks/openclaw/main.tf +++ b/stacks/openclaw/main.tf @@ -288,7 +288,7 @@ resource "kubernetes_persistent_volume_claim" "home_proxmox" { name = "openclaw-home-proxmox" namespace = kubernetes_namespace.openclaw.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } @@ -318,7 +318,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "openclaw-data-proxmox" namespace = kubernetes_namespace.openclaw.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } @@ -1112,7 +1112,7 @@ resource "kubernetes_persistent_volume_claim" "openlobster_data_proxmox" { name = "openlobster-data-proxmox" namespace = kubernetes_namespace.openclaw.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/paperless-ngx/main.tf b/stacks/paperless-ngx/main.tf index f012093a..0c0fc489 100644 --- a/stacks/paperless-ngx/main.tf +++ b/stacks/paperless-ngx/main.tf @@ -70,7 +70,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "paperless-ngx-data-proxmox" namespace = kubernetes_namespace.paperless-ngx.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } @@ -92,7 +92,7 @@ resource "kubernetes_persistent_volume_claim" "data_encrypted" { name = "paperless-ngx-data-encrypted" namespace = kubernetes_namespace.paperless-ngx.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/plotting-book/main.tf b/stacks/plotting-book/main.tf index 198deaaa..2f049f20 100644 --- a/stacks/plotting-book/main.tf +++ b/stacks/plotting-book/main.tf @@ -55,7 +55,7 @@ resource "kubernetes_persistent_volume_claim" "plotting-book-data" { name = "plotting-book-data-proxmox" namespace = kubernetes_namespace.plotting-book.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/postiz/modules/postiz/main.tf b/stacks/postiz/modules/postiz/main.tf index 96de0918..3b0758a7 100644 --- a/stacks/postiz/modules/postiz/main.tf +++ b/stacks/postiz/modules/postiz/main.tf @@ -43,7 +43,7 @@ resource "kubernetes_persistent_volume_claim" "uploads" { name = "postiz-uploads" namespace = kubernetes_namespace.postiz.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "50Gi" } diff --git a/stacks/priority-pass/main.tf b/stacks/priority-pass/main.tf index 4f1e7ca9..d7f17ce8 100644 --- a/stacks/priority-pass/main.tf +++ b/stacks/priority-pass/main.tf @@ -40,7 +40,7 @@ resource "kubernetes_persistent_volume_claim" "uploads" { name = "priority-pass-uploads" namespace = kubernetes_namespace.priority-pass.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "10Gi" } diff --git a/stacks/privatebin/main.tf b/stacks/privatebin/main.tf index c40a3963..f4b5116b 100644 --- a/stacks/privatebin/main.tf +++ b/stacks/privatebin/main.tf @@ -31,7 +31,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "privatebin-data-proxmox" namespace = kubernetes_namespace.privatebin.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/redis/modules/redis/main.tf b/stacks/redis/modules/redis/main.tf index c7eb9245..04aa52d6 100644 --- a/stacks/redis/modules/redis/main.tf +++ b/stacks/redis/modules/redis/main.tf @@ -650,7 +650,7 @@ resource "kubernetes_stateful_set_v1" "redis_v2" { metadata { name = "data" annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "20Gi" } diff --git a/stacks/resume/main.tf b/stacks/resume/main.tf index 5c94b642..c2976b41 100644 --- a/stacks/resume/main.tf +++ b/stacks/resume/main.tf @@ -168,7 +168,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "resume-data-proxmox" namespace = kubernetes_namespace.resume.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/rybbit/main.tf b/stacks/rybbit/main.tf index f3922955..6c62150a 100644 --- a/stacks/rybbit/main.tf +++ b/stacks/rybbit/main.tf @@ -72,7 +72,7 @@ resource "kubernetes_persistent_volume_claim" "clickhouse_data_proxmox" { name = "rybbit-clickhouse-data-proxmox" namespace = kubernetes_namespace.rybbit.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/send/main.tf b/stacks/send/main.tf index 117acff9..9325e2f5 100644 --- a/stacks/send/main.tf +++ b/stacks/send/main.tf @@ -32,7 +32,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "send-data-proxmox" namespace = kubernetes_namespace.send.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/servarr/aiostreams/main.tf b/stacks/servarr/aiostreams/main.tf index 7d702cb5..cf23cf1e 100644 --- a/stacks/servarr/aiostreams/main.tf +++ b/stacks/servarr/aiostreams/main.tf @@ -26,7 +26,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "aiostreams-data-proxmox" namespace = kubernetes_namespace.aiostreams.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/servarr/listenarr/main.tf b/stacks/servarr/listenarr/main.tf index 1f27165e..0e8d2a84 100644 --- a/stacks/servarr/listenarr/main.tf +++ b/stacks/servarr/listenarr/main.tf @@ -9,7 +9,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "servarr-listenarr-data-proxmox" namespace = "servarr" annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/servarr/mam-farming/main.tf b/stacks/servarr/mam-farming/main.tf index 363212d2..4e101331 100644 --- a/stacks/servarr/mam-farming/main.tf +++ b/stacks/servarr/mam-farming/main.tf @@ -27,7 +27,7 @@ resource "kubernetes_persistent_volume_claim" "mam_data" { name = local.data_pvc namespace = var.namespace annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/servarr/prowlarr/main.tf b/stacks/servarr/prowlarr/main.tf index 1099cab9..b12d7331 100644 --- a/stacks/servarr/prowlarr/main.tf +++ b/stacks/servarr/prowlarr/main.tf @@ -13,7 +13,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "servarr-prowlarr-data-proxmox" namespace = "servarr" annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/servarr/qbittorrent/main.tf b/stacks/servarr/qbittorrent/main.tf index eadc4f14..598dd180 100644 --- a/stacks/servarr/qbittorrent/main.tf +++ b/stacks/servarr/qbittorrent/main.tf @@ -13,7 +13,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "servarr-qbittorrent-data-proxmox" namespace = "servarr" annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/speedtest/main.tf b/stacks/speedtest/main.tf index 714dae04..5c3e7f6d 100644 --- a/stacks/speedtest/main.tf +++ b/stacks/speedtest/main.tf @@ -63,7 +63,7 @@ resource "kubernetes_persistent_volume_claim" "config_proxmox" { name = "speedtest-config-proxmox" namespace = kubernetes_namespace.speedtest.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/stirling-pdf/main.tf b/stacks/stirling-pdf/main.tf index ad5dcd7e..ae8af656 100644 --- a/stacks/stirling-pdf/main.tf +++ b/stacks/stirling-pdf/main.tf @@ -31,7 +31,7 @@ resource "kubernetes_persistent_volume_claim" "configs_proxmox" { name = "stirling-pdf-configs-proxmox" namespace = kubernetes_namespace.stirling-pdf.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/tandoor/main.tf b/stacks/tandoor/main.tf index f71a8d10..77abf9ae 100644 --- a/stacks/tandoor/main.tf +++ b/stacks/tandoor/main.tf @@ -64,7 +64,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "tandoor-data-proxmox" namespace = kubernetes_namespace.tandoor.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/technitium/modules/technitium/ha.tf b/stacks/technitium/modules/technitium/ha.tf index 71097afe..2311090c 100644 --- a/stacks/technitium/modules/technitium/ha.tf +++ b/stacks/technitium/modules/technitium/ha.tf @@ -12,7 +12,7 @@ resource "kubernetes_persistent_volume_claim" "secondary_config_encrypted" { name = "technitium-secondary-config-encrypted" namespace = kubernetes_namespace.technitium.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } @@ -200,7 +200,7 @@ resource "kubernetes_persistent_volume_claim" "tertiary_config_encrypted" { name = "technitium-tertiary-config-encrypted" namespace = kubernetes_namespace.technitium.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/technitium/modules/technitium/main.tf b/stacks/technitium/modules/technitium/main.tf index 46afccb2..fc7fd30e 100644 --- a/stacks/technitium/modules/technitium/main.tf +++ b/stacks/technitium/modules/technitium/main.tf @@ -102,7 +102,7 @@ resource "kubernetes_persistent_volume_claim" "primary_config_encrypted" { name = "technitium-primary-config-encrypted" namespace = kubernetes_namespace.technitium.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/tor-proxy/main.tf b/stacks/tor-proxy/main.tf index 392f912f..b0035d29 100644 --- a/stacks/tor-proxy/main.tf +++ b/stacks/tor-proxy/main.tf @@ -143,7 +143,7 @@ resource "kubernetes_persistent_volume_claim" "torrserver_data_proxmox" { name = "tor-proxy-torrserver-data-proxmox" namespace = kubernetes_namespace.tor-proxy.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/uptime-kuma/modules/uptime-kuma/main.tf b/stacks/uptime-kuma/modules/uptime-kuma/main.tf index 2b0b6f0e..2d4158a6 100644 --- a/stacks/uptime-kuma/modules/uptime-kuma/main.tf +++ b/stacks/uptime-kuma/modules/uptime-kuma/main.tf @@ -50,7 +50,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "uptime-kuma-data-proxmox" namespace = kubernetes_namespace.uptime-kuma.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "50%" "resize.topolvm.io/storage_limit" = "20Gi" } diff --git a/stacks/vaultwarden/modules/vaultwarden/main.tf b/stacks/vaultwarden/modules/vaultwarden/main.tf index e5fc2af1..29ca70ae 100644 --- a/stacks/vaultwarden/modules/vaultwarden/main.tf +++ b/stacks/vaultwarden/modules/vaultwarden/main.tf @@ -29,7 +29,7 @@ resource "kubernetes_persistent_volume_claim" "vaultwarden_data_encrypted" { name = "vaultwarden-data-encrypted" namespace = kubernetes_namespace.vaultwarden.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/wealthfolio/main.tf b/stacks/wealthfolio/main.tf index ce687138..a3ac9253 100644 --- a/stacks/wealthfolio/main.tf +++ b/stacks/wealthfolio/main.tf @@ -109,7 +109,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "wealthfolio-data-proxmox" namespace = kubernetes_namespace.wealthfolio.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" } diff --git a/stacks/whisper/main.tf b/stacks/whisper/main.tf index 27096f86..34d49460 100644 --- a/stacks/whisper/main.tf +++ b/stacks/whisper/main.tf @@ -30,7 +30,7 @@ resource "kubernetes_persistent_volume_claim" "data_proxmox" { name = "whisper-data-proxmox" namespace = kubernetes_namespace.whisper.metadata[0].name annotations = { - "resize.topolvm.io/threshold" = "80%" + "resize.topolvm.io/threshold" = "10%" "resize.topolvm.io/increase" = "100%" "resize.topolvm.io/storage_limit" = "5Gi" }