Open
Description
Requested Functionality
If you're using k8s as your compute environment and you're operating on-prem, it's quite likely that you also have some kind of shared storage system (e.g. NFS). The user should be able to specify such volume mounts for their TPI task.
Candidate Implementation
Relevant section in TF would look like this:
resource "iterative_task" "task_with_nfs_volume" {
cloud = "k8s"
nfs_volume {
server = "10.0.20.3"
server_path = "/data/projects"
mount_path = "/projects"
}
}