Skip to content

Commit

Permalink
send nodeStatus (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
zdarovich authored Dec 6, 2023
1 parent f197808 commit f88fb58
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions delta/delta.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ func getContainersAndStatus(obj kube.Object) ([]castai.Container, []byte, error)
appendContainers(v.Spec.Template.Spec)
case *networkingv1.Ingress:
st, err = json.Marshal(v.Status)
case *corev1.Node:
st, err = json.Marshal(v.Status)
default:
return nil, nil, nil
}
Expand Down

0 comments on commit f88fb58

Please sign in to comment.