Skip to content

Commit

Permalink
[BUG] pkg/driver/controller.go uses ToLower
Browse files Browse the repository at this point in the history
https://github.com/kubernetes-sigs/aws-ebs-csi-driver/blob/master/pkg/driver/controller.go#L139
All the parameters transformed to lower key, thus they should be compared to strings in lower key
  • Loading branch information
yevhenvolchenko authored Oct 13, 2022
1 parent 82def39 commit 8fbe47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/driver/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const (
PVNameKey = "csi.storage.k8s.io/pv/name"

// BlockExpressKey increases the iops limit for io2 volumes to the block express limit
BlockExpressKey = "blockExpress"
BlockExpressKey = "blockexpress"

// TagKeyPrefix contains the prefix of a volume parameter that designates it as
// a tag to be attached to the resource
Expand Down

0 comments on commit 8fbe47d

Please sign in to comment.