Skip to content

Commit

Permalink
Continue on container failure
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Hoffman <31711338+Aaron-9900@users.noreply.github.com>
  • Loading branch information
Aaron-9900 committed Nov 27, 2024
1 parent 6b9063a commit 5b2c46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/utils/kube/kube.go
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ func GetResourceImages(u *unstructured.Unstructured) []string {
for _, container := range containers {
containerMap, ok := container.(map[string]interface{})
if !ok {
return nil
continue
}
image, found, err := unstructured.NestedString(containerMap, "image")
if !found || err != nil {
Expand Down

0 comments on commit 5b2c46f

Please sign in to comment.