We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f05350 commit 63fc86aCopy full SHA for 63fc86a
pkg/volume/cinder/cinder.go
@@ -281,6 +281,13 @@ func (b *cinderVolumeMounter) GetAttributes() volume.Attributes {
281
}
282
283
284
+// Checks prior to mount operations to verify that the required components (binaries, etc.)
285
+// to mount the volume are available on the underlying node.
286
+// If not, it returns an error
287
+func (b *cinderVolumeMounter) CanMount() error {
288
+ return nil
289
+}
290
+
291
func (b *cinderVolumeMounter) SetUp(fsGroup *int64) error {
292
return b.SetUpAt(b.GetPath(), fsGroup)
293
0 commit comments