mirror of
https://github.com/crazy-max/diun.git
synced 2025-04-04 19:45:20 +00:00
Avoid duplicated notifications with Kubernetes DaemonSet (#252)
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
dc1216c221
commit
cd65887ad0
1 changed files with 12 additions and 1 deletions
|
@ -16,7 +16,9 @@ func (c *Client) PodList(opts metav1.ListOptions) ([]v1.Pod, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
podList = append(podList, pods.Items...)
|
||||
for _, pod := range pods.Items {
|
||||
podList = appendPod(podList, pod)
|
||||
}
|
||||
}
|
||||
|
||||
sort.Slice(podList, func(i, j int) bool {
|
||||
|
@ -25,3 +27,12 @@ func (c *Client) PodList(opts metav1.ListOptions) ([]v1.Pod, error) {
|
|||
|
||||
return podList, nil
|
||||
}
|
||||
|
||||
func appendPod(pods []v1.Pod, i v1.Pod) []v1.Pod {
|
||||
for _, pod := range pods {
|
||||
if len(pod.OwnerReferences) > 0 && len(i.OwnerReferences) > 0 && pod.OwnerReferences[0].UID == i.OwnerReferences[0].UID {
|
||||
return pods
|
||||
}
|
||||
}
|
||||
return append(pods, i)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue