Skip to content

Commit

Permalink
Merge pull request #36 from nebius/bugfix/fielstore-mount
Browse files Browse the repository at this point in the history
fixed filestore bug
  • Loading branch information
malibora authored Oct 10, 2024
2 parents 15a7245 + 1ff1886 commit 06cde89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k8s-inference/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "nebius_mk8s_v1_node_group" "cpu-only" {
filesystems = var.enable_filestore ? [
{
attach_mode = "READ_WRITE"
mount_tag = "filestore-device"
mount_tag = "data"
existing_filesystem = nebius_compute_v1_filesystem.shared-filesystem[0]
}
] : null
Expand Down Expand Up @@ -79,7 +79,7 @@ resource "nebius_mk8s_v1_node_group" "gpu" {
filesystems = var.enable_filestore ? [
{
attach_mode = "READ_WRITE"
mount_tag = "filestore-device"
mount_tag = "data"
existing_filesystem = nebius_compute_v1_filesystem.shared-filesystem[0]
}
] : null
Expand Down

0 comments on commit 06cde89

Please sign in to comment.