Skip to content

Commit 4ee59fa

Browse files
Move ControllerModifyVolume to GA
1 parent a539b4f commit 4ee59fa

File tree

4 files changed

+1205
-1215
lines changed

4 files changed

+1205
-1215
lines changed

csi.proto

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ service Controller {
109109

110110
rpc ControllerModifyVolume (ControllerModifyVolumeRequest)
111111
returns (ControllerModifyVolumeResponse) {
112-
option (alpha_method) = true;
113112
}
114113
}
115114

@@ -413,7 +412,7 @@ message CreateVolumeRequest {
413412
// as if they take precedence over the parameters field.
414413
// This field SHALL NOT be specified unless the SP has the
415414
// MODIFY_VOLUME plugin capability.
416-
map<string, string> mutable_parameters = 8 [(alpha_field) = true];
415+
map<string, string> mutable_parameters = 8;
417416
}
418417

419418
// Specifies what source the volume will be created from. One of the
@@ -890,7 +889,7 @@ message ValidateVolumeCapabilitiesRequest {
890889

891890
// See CreateVolumeRequest.mutable_parameters.
892891
// This field is OPTIONAL.
893-
map<string, string> mutable_parameters = 6 [(alpha_field) = true];
892+
map<string, string> mutable_parameters = 6;
894893
}
895894

896895
message ValidateVolumeCapabilitiesResponse {
@@ -909,7 +908,7 @@ message ValidateVolumeCapabilitiesResponse {
909908

910909
// The volume creation mutable_parameters validated by the plugin.
911910
// This field is OPTIONAL.
912-
map<string, string> mutable_parameters = 4 [(alpha_field) = true];
911+
map<string, string> mutable_parameters = 4;
913912
}
914913

915914
// Confirmed indicates to the CO the set of capabilities that the
@@ -1021,8 +1020,6 @@ message ControllerGetVolumeResponse {
10211020
VolumeStatus status = 2;
10221021
}
10231022
message ControllerModifyVolumeRequest {
1024-
option (alpha_message) = true;
1025-
10261023
// Contains identity information for the existing volume.
10271024
// This field is REQUIRED.
10281025
string volume_id = 1;
@@ -1044,7 +1041,6 @@ message ControllerModifyVolumeRequest {
10441041
}
10451042

10461043
message ControllerModifyVolumeResponse {
1047-
option (alpha_message) = true;
10481044
}
10491045

10501046
message GetCapacityRequest {
@@ -1189,7 +1185,7 @@ message ControllerServiceCapability {
11891185

11901186
// Indicates the SP supports modifying volume with mutable
11911187
// parameters. See ControllerModifyVolume for details.
1192-
MODIFY_VOLUME = 14 [(alpha_enum_value) = true];
1188+
MODIFY_VOLUME = 14;
11931189

11941190
// Indicates the SP supports the GetSnapshot RPC.
11951191
// This enables COs to fetch an existing snapshot.

0 commit comments

Comments
 (0)