mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
Merge pull request #74493 from cofyc/fix74384
Fix panic because VolumeSpec may be nil in volume reconstruction scenario
This commit is contained in:
commit
c7a9a150e1
@ -732,7 +732,7 @@ func (og *operationGenerator) GenerateUnmountVolumeFunc(
|
||||
podsDir string) (volumetypes.GeneratedOperations, error) {
|
||||
|
||||
var pluginName string
|
||||
if useCSIPlugin(og.volumePluginMgr, volumeToUnmount.VolumeSpec) {
|
||||
if volumeToUnmount.VolumeSpec != nil && useCSIPlugin(og.volumePluginMgr, volumeToUnmount.VolumeSpec) {
|
||||
pluginName = csi.CSIPluginName
|
||||
} else {
|
||||
pluginName = volumeToUnmount.PluginName
|
||||
|
Loading…
Reference in New Issue
Block a user