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.
2 parents 1955467 + 67aeb09 commit 9b54021Copy full SHA for 9b54021
pkg/kubelet/volumemanager/cache/actual_state_of_world.go
@@ -398,7 +398,7 @@ func (asw *actualStateOfWorld) addVolume(
398
}
399
400
pluginIsAttachable := false
401
- if _, ok := volumePlugin.(volume.AttachableVolumePlugin); ok {
+ if attachablePlugin, err := asw.volumePluginMgr.FindAttachablePluginBySpec(volumeSpec); err == nil && attachablePlugin != nil {
402
pluginIsAttachable = true
403
404
0 commit comments