We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e506c commit 330c2c4Copy full SHA for 330c2c4
pkg/cluster/volumes.go
@@ -96,13 +96,13 @@ func (c *Cluster) syncUnderlyingEBSVolume() error {
96
var modifySize *int64
97
var modifyType *string
98
99
- if targetValue.Iops != nil {
+ if targetValue.Iops != nil && *targetValue.Iops >= int64(3000) {
100
if volume.Iops != *targetValue.Iops {
101
modifyIops = targetValue.Iops
102
}
103
104
105
- if targetValue.Throughput != nil {
+ if targetValue.Throughput != nil && *targetValue.Throughput >= int64(125) {
106
if volume.Throughput != *targetValue.Throughput {
107
modifyThroughput = targetValue.Throughput
108
0 commit comments