Commit 4acc23b4 authored by linyouchong's avatar linyouchong

fix incorrect comment

parent 1bcf0b0a
...@@ -152,7 +152,7 @@ type nodeManaged struct { ...@@ -152,7 +152,7 @@ type nodeManaged struct {
// volumesToAttach is a map containing the set of volumes that should be // volumesToAttach is a map containing the set of volumes that should be
// attached to this node. The key in the map is the name of the volume and // attached to this node. The key in the map is the name of the volume and
// the value is a pod object containing more information about the volume. // the value is a volumeToAttach object containing more information about the volume.
volumesToAttach map[v1.UniqueVolumeName]volumeToAttach volumesToAttach map[v1.UniqueVolumeName]volumeToAttach
// keepTerminatedPodVolumes determines if for terminated pods(on this node) - volumes // keepTerminatedPodVolumes determines if for terminated pods(on this node) - volumes
...@@ -160,7 +160,7 @@ type nodeManaged struct { ...@@ -160,7 +160,7 @@ type nodeManaged struct {
keepTerminatedPodVolumes bool keepTerminatedPodVolumes bool
} }
// The volume object represents a volume that should be attached to a node. // The volumeToAttach object represents a volume that should be attached to a node.
type volumeToAttach struct { type volumeToAttach struct {
// multiAttachErrorReported indicates whether the multi-attach error has been reported for the given volume. // multiAttachErrorReported indicates whether the multi-attach error has been reported for the given volume.
// It is used to to prevent reporting the error from being reported more than once for a given volume. // It is used to to prevent reporting the error from being reported more than once for a given volume.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment