0
0
Fork 0
mirror of https://github.com/crazy-max/diun.git synced 2025-04-04 19:45:20 +00:00

Avoid duplicated notifications with Kubernetes DaemonSet ()

Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2021-01-04 23:35:27 +01:00 committed by GitHub
parent dc1216c221
commit cd65887ad0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
}