Skip to content

Commit 3e315a6

Browse files
authored
fix(api): pod detail endpoint returns invalid container status for init containers (#8884)
1 parent e5a51ac commit 3e315a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/api/pkg/resource/pod/detail.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,9 @@ func extractContainerResourceValue(fs *v1.ResourceFieldSelector, container *v1.C
440440
}
441441

442442
func extractContainerStatus(pod *v1.Pod, container *v1.Container) *v1.ContainerStatus {
443-
for _, status := range pod.Status.ContainerStatuses {
443+
statuses := append(pod.Status.ContainerStatuses, pod.Status.InitContainerStatuses...)
444+
445+
for _, status := range statuses {
444446
if status.Name == container.Name {
445447
return &status
446448
}

0 commit comments

Comments
 (0)