Skip to content

Add alpha annotations for GROUP_CONTROLLER_SERVICE #539

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -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