-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pod-files
rule checks 1 pod per owner reference group
#43
pod-files
rule checks 1 pod per owner reference group
#43
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left some initial minor comments
// GroupMinimalPodsByNodes groups pods by their nodes. Includes only one pod per reference group while trying | ||
// to return a minimal number of groups. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// GroupMinimalPodsByNodes groups pods by their nodes. Includes only one pod per reference group while trying | |
// to return a minimal number of groups. | |
// SelectPodOfReferenceGroup returns a single pod per owner reference group | |
// as well as groups the returned pods by the nodes they are scheduled on. | |
// Pods that do not have an owner reference will always be selected. | |
// It tries to pick the pods in a way that fewer nodes will be selected. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can also move this to internal/utils
groupedPodsByNodes := map[string][]corev1.Pod{} | ||
groupedPodsByReferences := map[string][]corev1.Pod{} | ||
for _, pod := range pods { | ||
podTarget := target.With("name", pod.Name, "namespace", pod.Namespace, "kind", "pod") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be moved closer to its usage
}) | ||
|
||
for _, key := range keys { | ||
pods := groupedPodsByReferences[key] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pods := groupedPodsByReferences[key] | |
// we start from the smaller ref group because of fewer options to chose nodes from | |
pods := groupedPodsByReferences[key] |
return ok | ||
}) | ||
|
||
if podOnUsedNodeIdx < 0 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if podOnUsedNodeIdx < 0 { | |
// if none of the pods match already selected node | |
// selected the node and add a single pod of the reference group for checking | |
if podOnUsedNodeIdx < 0 { |
continue | ||
} | ||
|
||
pod := pods[podOnUsedNodeIdx] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pod := pods[podOnUsedNodeIdx] | |
// if there is a pod of the reference group which is scheduled on a selected node | |
// then add this pod to the "to-be-checked" pods | |
pod := pods[podOnUsedNodeIdx] |
pod-files
rule checks 1 pod per reference grouppod-files
rule checks 1 pod per owner reference group
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
What this PR does / why we need it:
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Release note: