mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 20:53:33 +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) {
|
podsDir string) (volumetypes.GeneratedOperations, error) {
|
||||||
|
|
||||||
var pluginName string
|
var pluginName string
|
||||||
if useCSIPlugin(og.volumePluginMgr, volumeToUnmount.VolumeSpec) {
|
if volumeToUnmount.VolumeSpec != nil && useCSIPlugin(og.volumePluginMgr, volumeToUnmount.VolumeSpec) {
|
||||||
pluginName = csi.CSIPluginName
|
pluginName = csi.CSIPluginName
|
||||||
} else {
|
} else {
|
||||||
pluginName = volumeToUnmount.PluginName
|
pluginName = volumeToUnmount.PluginName
|
||||||
|
Loading…
Reference in New Issue
Block a user