apalia / cloudstack-csi-driver

Container Storage Interface (CSI) plugin for Apache CloudStack
Apache License 2.0
10 stars 17 forks source link

Remove protosanitizer #4

Closed olivierlemasle closed 2 years ago

olivierlemasle commented 2 years ago

protosanitizer is provided by github.com/kubernetes-csi/csi-lib-utils and used to strip secrets from CSI gRPC payload logs. However, it comes with an overhead, works only with the legacy Go protobuf module (github.com/golang/protobuf) and more importantly, this CSI driver should not involve the communication of secrets, so the "sanitization" adds no value.

Also configure golangci-lint and fix lint errors.