Skip to content

Commit 3518d0c

Browse files
committed
describe what if topology not match exactly
Describe what to expect when the accessible_topology of node and volume does not match exactly.
1 parent abf6346 commit 3518d0c

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

csi.proto

+15-1
Original file line numberDiff line numberDiff line change
@@ -579,6 +579,11 @@ message Volume {
579579
// COs MAY use this information along with the topology information
580580
// returned by NodeGetInfo to ensure that a given volume is accessible
581581
// from a given node when scheduling workloads.
582+
// The volume is accessible from all locations in the
583+
// specified topology.
584+
// The volume is accessible from a node if the volume's
585+
// accessible_topology is equal to or a superset of the node's
586+
// accessible_topology.
582587
// This field is OPTIONAL. If it is not specified, the CO MAY assume
583588
// the volume is equally accessible from all nodes in the cluster and
584589
// MAY schedule workloads referencing the volume on any available
@@ -1677,6 +1682,10 @@ message NodeGetInfoResponse {
16771682
// COs MAY use this information along with the topology information
16781683
// returned in CreateVolumeResponse to ensure that a given volume is
16791684
// accessible from a given node when scheduling workloads.
1685+
// The node can access some of the locations in the
1686+
// specified topology.
1687+
// The node can access a volume if the node's accessible_topology
1688+
// is equal to or a subset of the volume's accessible_topology.
16801689
// This field is OPTIONAL. If it is not specified, the CO MAY assume
16811690
// the node is not subject to any topological constraint, and MAY
16821691
// schedule workloads that reference any volume V, such that there are
@@ -1686,7 +1695,12 @@ message NodeGetInfoResponse {
16861695
// accessible_topology =
16871696
// {"region": "R1", "zone": "Z2"}
16881697
// Indicates the node exists within the "region" "R1" and the "zone"
1689-
// "Z2".
1698+
// "Z2". And it can access the following volumes:
1699+
// Volume 1: accessible_topology = {"region": "R1", "zone": "Z2"}
1700+
// Volume 2: accessible_topology = {"region": "R1"}
1701+
// But can not access the following volume:
1702+
// Volume 3: accessible_topology =
1703+
// {"region": "R1", "zone": "Z2", "rack": "R3"}
16901704
Topology accessible_topology = 3;
16911705
}
16921706
message NodeExpandVolumeRequest {

lib/go/csi/csi.pb.go

+18-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1050,6 +1050,11 @@ message Volume {
10501050
// COs MAY use this information along with the topology information
10511051
// returned by NodeGetInfo to ensure that a given volume is accessible
10521052
// from a given node when scheduling workloads.
1053+
// The volume is accessible from all locations in the
1054+
// specified topology.
1055+
// The volume is accessible from a node if the volume's
1056+
// accessible_topology is equal to or a superset of the node's
1057+
// accessible_topology.
10531058
// This field is OPTIONAL. If it is not specified, the CO MAY assume
10541059
// the volume is equally accessible from all nodes in the cluster and
10551060
// MAY schedule workloads referencing the volume on any available
@@ -2767,6 +2772,10 @@ message NodeGetInfoResponse {
27672772
// COs MAY use this information along with the topology information
27682773
// returned in CreateVolumeResponse to ensure that a given volume is
27692774
// accessible from a given node when scheduling workloads.
2775+
// The node can access some of the locations in the
2776+
// specified topology.
2777+
// The node can access a volume if the node's accessible_topology
2778+
// is equal to or a subset of the volume's accessible_topology.
27702779
// This field is OPTIONAL. If it is not specified, the CO MAY assume
27712780
// the node is not subject to any topological constraint, and MAY
27722781
// schedule workloads that reference any volume V, such that there are
@@ -2776,7 +2785,12 @@ message NodeGetInfoResponse {
27762785
// accessible_topology =
27772786
// {"region": "R1", "zone": "Z2"}
27782787
// Indicates the node exists within the "region" "R1" and the "zone"
2779-
// "Z2".
2788+
// "Z2". And it can access the following volumes:
2789+
// Volume 1: accessible_topology = {"region": "R1", "zone": "Z2"}
2790+
// Volume 2: accessible_topology = {"region": "R1"}
2791+
// But can not access the following volume:
2792+
// Volume 3: accessible_topology =
2793+
// {"region": "R1", "zone": "Z2", "rack": "R3"}
27802794
Topology accessible_topology = 3;
27812795
}
27822796
```

0 commit comments

Comments
 (0)