Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion csi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,13 @@ message NodeStageVolumeRequest {
// that the path is directory and that the process serving the
// request has `read` and `write` permission to that directory. The
// CO SHALL be responsible for creating the directory if it does not
// exist.
// exist.The CO will pass around the staging_target_directory from
// NodeStageVolume to NodePublishVolume. SP can stage a volume
// however it like inside the staging_target_directory.
// For example, SP can stage it directly at the
// starging_target_directory or a subdirectory or file underneath.
// SP can also store other files/metadata inside the
// staging_target_directory if it like.
// This is a REQUIRED field.
string staging_target_path = 3;

Expand Down
8 changes: 7 additions & 1 deletion lib/go/csi/csi.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -1931,7 +1931,13 @@ message NodeStageVolumeRequest {
// that the path is directory and that the process serving the
// request has `read` and `write` permission to that directory. The
// CO SHALL be responsible for creating the directory if it does not
// exist.
// exist.The CO will pass around the staging_target_directory from
// NodeStageVolume to NodePublishVolume. SP can stage a volume
// however it like inside the staging_target_directory.
// For example, SP can stage it directly at the
// starging_target_directory or a subdirectory or file underneath.
// SP can also store other files/metadata inside the
// staging_target_directory if it like.
// This is a REQUIRED field.
string staging_target_path = 3;

Expand Down