File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ node_groups:
36
36
min_instances : 1 # minimum number of instances
37
37
max_instances : 5 # maximum number of instances
38
38
instance_volume_size : 50 # disk storage size per instance (GB)
39
- instance_volume_type : gp2 # instance volume type [gp2 | io1 | st1 | sc1]
39
+ instance_volume_type : gp3 # instance volume type [gp2 | gp3 | io1 | st1 | sc1]
40
40
# instance_volume_iops: 3000 # instance volume iops (only applicable to io1)
41
41
spot : false # whether to use spot instances
42
42
@@ -45,7 +45,7 @@ node_groups:
45
45
min_instances : 1
46
46
max_instances : 5
47
47
instance_volume_size : 50
48
- instance_volume_type : gp2
48
+ instance_volume_type : gp3
49
49
# instance_volume_iops: 3000
50
50
spot : false
51
51
...
Original file line number Diff line number Diff line change @@ -478,7 +478,7 @@ var ManagedConfigStructFieldValidations = []*cr.StructFieldValidation{
478
478
StructField : "InstanceVolumeType" ,
479
479
StringValidation : & cr.StringValidation {
480
480
AllowedValues : VolumeTypesStrings (),
481
- Default : GP2VolumeType .String (),
481
+ Default : GP3VolumeType .String (),
482
482
},
483
483
Parser : func (str string ) (interface {}, error ) {
484
484
return VolumeTypeFromString (str ), nil
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ type VolumeType int
21
21
const (
22
22
UnknownVolumeType VolumeType = iota
23
23
GP2VolumeType
24
+ GP3VolumeType
24
25
IO1VolumeType
25
26
SC1VolumeType
26
27
ST1VolumeType
@@ -29,6 +30,7 @@ const (
29
30
var _availableVolumeTypes = []string {
30
31
"unknown" ,
31
32
"gp2" ,
33
+ "gp3" ,
32
34
"io1" ,
33
35
"sc1" ,
34
36
"st1" ,
You can’t perform that action at this time.
0 commit comments