Skip to content

Commit

Permalink
fix for incomplete image names (redhat-best-practices-for-k8s#1305)
Browse files Browse the repository at this point in the history
  • Loading branch information
edcdavid authored Aug 3, 2023
1 parent 48e6ca7 commit 92b7486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ func getPodContainers(aPod *corev1.Pod, useIgnoreList bool) (containerList []*Co

container := Container{Podname: aPod.Name, Namespace: aPod.Namespace,
NodeName: aPod.Spec.NodeName, Container: cut, Status: status, Runtime: aRuntime, UID: uid,
ContainerImageIdentifier: buildContainerImageSource(aPod.Spec.Containers[j].Image, cutStatus.ImageID)}
ContainerImageIdentifier: buildContainerImageSource(cutStatus.Image, cutStatus.ImageID)}

// Warn if readiness probe did not succeeded yet.
if !status.Ready {
Expand Down

0 comments on commit 92b7486

Please sign in to comment.