truenas deprecation: migrate all non-immich storage to proxmox NFS
- Migrate 7 backup CronJobs to Proxmox host NFS (192.168.1.127) (etcd, mysql, postgresql, nextcloud, redis, vaultwarden, plotting-book) - Migrate headscale backup, ebook2audiobook, osm_routing to Proxmox NFS - Migrate servarr (lidarr, readarr, soulseek) NFS refs to Proxmox - Remove 79 orphaned TrueNAS NFS module declarations from 49 stacks - Delete stacks/platform/modules/ (27 dead module copies, 65MB) - Update nfs-truenas StorageClass to point to Proxmox (192.168.1.127) - Remove iscsi DNS record from config.tfvars - Fix woodpecker persistence config and alertmanager PV Only Immich (8 PVCs, ~1.4TB) remains on TrueNAS.
This commit is contained in:
parent
3246c4d112
commit
82b0f6c4cb
193 changed files with 825 additions and 177172 deletions
|
|
@ -32,20 +32,20 @@ resource "kubernetes_resource_quota_v1" "osm_routing" {
|
|||
}
|
||||
}
|
||||
|
||||
module "nfs_osrm_data" {
|
||||
module "nfs_osrm_data_host" {
|
||||
source = "../../modules/kubernetes/nfs_volume"
|
||||
name = "osm-routing-osrm-data"
|
||||
name = "osm-routing-osrm-data-host"
|
||||
namespace = kubernetes_namespace.osm-routing.metadata[0].name
|
||||
nfs_server = var.nfs_server
|
||||
nfs_path = "/mnt/main/osm-routing/osrm-data"
|
||||
nfs_server = "192.168.1.127"
|
||||
nfs_path = "/srv/nfs/osm-routing/osrm"
|
||||
}
|
||||
|
||||
module "nfs_otp_data" {
|
||||
module "nfs_otp_data_host" {
|
||||
source = "../../modules/kubernetes/nfs_volume"
|
||||
name = "osm-routing-otp-data"
|
||||
name = "osm-routing-otp-data-host"
|
||||
namespace = kubernetes_namespace.osm-routing.metadata[0].name
|
||||
nfs_server = var.nfs_server
|
||||
nfs_path = "/mnt/main/osm-routing/otp-data"
|
||||
nfs_server = "192.168.1.127"
|
||||
nfs_path = "/srv/nfs/osm-routing/otp"
|
||||
}
|
||||
|
||||
# --- OSRM Foot ---
|
||||
|
|
@ -102,7 +102,7 @@ resource "kubernetes_deployment" "osrm-foot" {
|
|||
volume {
|
||||
name = "osrm-data"
|
||||
persistent_volume_claim {
|
||||
claim_name = module.nfs_osrm_data.claim_name
|
||||
claim_name = module.nfs_osrm_data_host.claim_name
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -183,7 +183,7 @@ resource "kubernetes_deployment" "osrm-bicycle" {
|
|||
volume {
|
||||
name = "osrm-data"
|
||||
persistent_volume_claim {
|
||||
claim_name = module.nfs_osrm_data.claim_name
|
||||
claim_name = module.nfs_osrm_data_host.claim_name
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -268,7 +268,7 @@ resource "kubernetes_deployment" "otp" {
|
|||
volume {
|
||||
name = "otp-data"
|
||||
persistent_volume_claim {
|
||||
claim_name = module.nfs_otp_data.claim_name
|
||||
claim_name = module.nfs_otp_data_host.claim_name
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue