Skip to content

Commit 70b51f7

Browse files
authored
Merge pull request #539 from xing-yang/group_alpha
Add alpha annotations for GROUP_CONTROLLER_SERVICE
2 parents 47a0fa4 + 3084acc commit 70b51f7

File tree

3 files changed

+273
-260
lines changed

3 files changed

+273
-260
lines changed

csi.proto

+7-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ message PluginCapability {
213213
// attempt to invoke the REQUIRED GroupController service RPCs, as
214214
// well as specific RPCs as indicated by
215215
// GroupControllerGetCapabilities.
216-
GROUP_CONTROLLER_SERVICE = 3;
216+
GROUP_CONTROLLER_SERVICE = 3 [(alpha_enum_value) = true];
217217
}
218218
Type type = 1;
219219
}
@@ -1683,17 +1683,23 @@ message NodeExpandVolumeResponse {
16831683
int64 capacity_bytes = 1;
16841684
}
16851685
message GroupControllerGetCapabilitiesRequest {
1686+
option (alpha_message) = true;
1687+
16861688
// Intentionally empty.
16871689
}
16881690

16891691
message GroupControllerGetCapabilitiesResponse {
1692+
option (alpha_message) = true;
1693+
16901694
// All the capabilities that the group controller service supports.
16911695
// This field is OPTIONAL.
16921696
repeated GroupControllerServiceCapability capabilities = 1;
16931697
}
16941698

16951699
// Specifies a capability of the group controller service.
16961700
message GroupControllerServiceCapability {
1701+
option (alpha_message) = true;
1702+
16971703
message RPC {
16981704
enum Type {
16991705
UNKNOWN = 0;

0 commit comments

Comments
 (0)