move drone to nfs [ci skip]

This commit is contained in:
Viktor Barzin 2023-11-11 02:32:20 +00:00
parent d1dde6696d
commit c06f071da0
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
2 changed files with 10 additions and 6 deletions

View file

@ -113,13 +113,17 @@ resource "kubernetes_deployment" "drone_server" {
}
volume {
name = "data"
iscsi {
target_portal = "iscsi.viktorbarzin.lan:3260"
fs_type = "ext4"
iqn = "iqn.2020-12.lan.viktorbarzin:storage:drone"
lun = 0
read_only = false
nfs {
path = "/mnt/main/drone"
server = "10.0.10.15"
}
# iscsi {
# target_portal = "iscsi.viktorbarzin.lan:3260"
# fs_type = "ext4"
# iqn = "iqn.2020-12.lan.viktorbarzin:storage:drone"
# lun = 0
# read_only = false
# }
}
}
}

Binary file not shown.