From edd0a153454634eaeec993a42a45b04dd05c2f09 Mon Sep 17 00:00:00 2001 From: Vegard Hagen Date: Mon, 6 Jan 2025 21:07:58 +0100 Subject: [PATCH] fix(authelia): increase db disk size --- k8s/infra/auth/authelia/cnpg-db.yaml | 4 ++-- tofu/kubernetes/main.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/k8s/infra/auth/authelia/cnpg-db.yaml b/k8s/infra/auth/authelia/cnpg-db.yaml index 9564c4d..1dd79ad 100644 --- a/k8s/infra/auth/authelia/cnpg-db.yaml +++ b/k8s/infra/auth/authelia/cnpg-db.yaml @@ -31,9 +31,9 @@ spec: # spec: # type: LoadBalancer storage: - size: 512M + size: 1G pvcTemplate: storageClassName: proxmox-csi - volumeName: pv-authelia-postgres + volumeName: pv-authelia-database accessModes: - ReadWriteOnce diff --git a/tofu/kubernetes/main.tf b/tofu/kubernetes/main.tf index afcb6a7..8efe907 100644 --- a/tofu/kubernetes/main.tf +++ b/tofu/kubernetes/main.tf @@ -128,9 +128,9 @@ module "volumes" { node = "euclid" size = "1G" } - pv-authelia-postgres = { + pv-authelia-database = { node = "euclid" - size = "512M" + size = "1G" } pv-keycloak-postgres = { node = "euclid"