[storage] Fix owntracks + wealthfolio: switch to encrypted PVCs
Some checks failed
Build Custom DIUN Image / build (push) Has been cancelled
Deploy Post-Mortems to GitHub Pages / deploy (push) Has been cancelled

Both services were running against empty unencrypted PVCs after the
proxmox-lvm-encrypted migration. Data copied from old Released PVs
via LUKS-unlock on PVE host, deployments switched to encrypted PVCs.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Viktor Barzin 2026-04-17 20:29:57 +00:00
parent e51bdb2af8
commit 5319f03ebc
2 changed files with 3 additions and 3 deletions

View file

@ -170,7 +170,7 @@ resource "kubernetes_deployment" "owntracks" {
volume { volume {
name = "data" name = "data"
persistent_volume_claim { persistent_volume_claim {
claim_name = kubernetes_persistent_volume_claim.data_proxmox.metadata[0].name claim_name = "owntracks-data-encrypted"
} }
} }
} }

View file

@ -162,7 +162,7 @@ resource "kubernetes_deployment" "wealthfolio" {
volume { volume {
name = "data" name = "data"
persistent_volume_claim { persistent_volume_claim {
claim_name = kubernetes_persistent_volume_claim.data_proxmox.metadata[0].name claim_name = "wealthfolio-data-encrypted"
} }
} }
} }
@ -298,7 +298,7 @@ resource "kubernetes_cron_job_v1" "wealthfolio_sync" {
volume { volume {
name = "data" name = "data"
persistent_volume_claim { persistent_volume_claim {
claim_name = kubernetes_persistent_volume_claim.data_proxmox.metadata[0].name claim_name = "wealthfolio-data-encrypted"
} }
} }
} }