Merge pull request #125047 from zhanluxianshen/clean-typos-in-kubelet

clean typos logs in kubelet.
This commit is contained in:
Kubernetes Prow Robot 2024-06-28 16:48:24 -07:00 committed by GitHub
commit 16b7d5310a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 3 deletions

View File

@ -120,7 +120,7 @@ type ContainerManager interface {
// PrepareDynamicResource prepares dynamic pod resources // PrepareDynamicResource prepares dynamic pod resources
PrepareDynamicResources(*v1.Pod) error PrepareDynamicResources(*v1.Pod) error
// UnrepareDynamicResources unprepares dynamic pod resources // UnprepareDynamicResources unprepares dynamic pod resources
UnprepareDynamicResources(*v1.Pod) error UnprepareDynamicResources(*v1.Pod) error
// PodMightNeedToUnprepareResources returns true if the pod with the given UID // PodMightNeedToUnprepareResources returns true if the pod with the given UID

View File

@ -46,7 +46,6 @@ const (
// We will override user settings and set to either imagefs or nodefs depending on configuration. // We will override user settings and set to either imagefs or nodefs depending on configuration.
SignalContainerFsAvailable Signal = "containerfs.available" SignalContainerFsAvailable Signal = "containerfs.available"
// SignalContainerFsInodesFree is amount of inodes available on filesystem that container runtime uses for container writable layers. // SignalContainerFsInodesFree is amount of inodes available on filesystem that container runtime uses for container writable layers.
// SignalContainerFsAvailable is amount of storage available on filesystem that container runtime uses for container writable layers.
// In case of a single filesystem, containerfs=nodefs. // In case of a single filesystem, containerfs=nodefs.
// In case of a image filesystem, containerfs=imagefs. // In case of a image filesystem, containerfs=imagefs.
// We will override user settings and set to either imagefs or nodefs depending on configuration. // We will override user settings and set to either imagefs or nodefs depending on configuration.

View File

@ -38,7 +38,7 @@ const (
fsStatsLogs fsStatsType = "logs" fsStatsLogs fsStatsType = "logs"
// fsStatsRoot identifies stats for pod container writable layers. // fsStatsRoot identifies stats for pod container writable layers.
fsStatsRoot fsStatsType = "root" fsStatsRoot fsStatsType = "root"
// fsStatsContainer identifies stats for pod container read-only layers // fsStatsImages identifies stats for pod container read-only layers
fsStatsImages fsStatsType = "images" fsStatsImages fsStatsType = "images"
) )