Skip to content

Commit

Permalink
Merge pull request #539 from xing-yang/group_alpha
Browse files Browse the repository at this point in the history
Add alpha annotations for GROUP_CONTROLLER_SERVICE
  • Loading branch information
saad-ali authored Mar 6, 2023
2 parents 47a0fa4 + 3084acc commit 70b51f7
Show file tree
Hide file tree
Showing 3 changed files with 273 additions and 260 deletions.
8 changes: 7 additions & 1 deletion csi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ message PluginCapability {
// attempt to invoke the REQUIRED GroupController service RPCs, as
// well as specific RPCs as indicated by
// GroupControllerGetCapabilities.
GROUP_CONTROLLER_SERVICE = 3;
GROUP_CONTROLLER_SERVICE = 3 [(alpha_enum_value) = true];
}
Type type = 1;
}
Expand Down Expand Up @@ -1683,17 +1683,23 @@ message NodeExpandVolumeResponse {
int64 capacity_bytes = 1;
}
message GroupControllerGetCapabilitiesRequest {
option (alpha_message) = true;

// Intentionally empty.
}

message GroupControllerGetCapabilitiesResponse {
option (alpha_message) = true;

// All the capabilities that the group controller service supports.
// This field is OPTIONAL.
repeated GroupControllerServiceCapability capabilities = 1;
}

// Specifies a capability of the group controller service.
message GroupControllerServiceCapability {
option (alpha_message) = true;

message RPC {
enum Type {
UNKNOWN = 0;
Expand Down
Loading

0 comments on commit 70b51f7

Please sign in to comment.