Skip to content
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

Merged
merged 4 commits into from
Oct 9, 2023

Conversation

AleksandarSavchev
Copy link
Member

@AleksandarSavchev AleksandarSavchev commented Oct 5, 2023

What this PR does / why we need it:

Which issue(s) this PR fixes:
Fixes #

Special notes for your reviewer:

Release note:

DISA Kubernetes STIGS `pod-files` rule now checks only 1 pod per owner reference group.

@AleksandarSavchev AleksandarSavchev requested a review from a team as a code owner October 5, 2023 14:08
@gardener-robot gardener-robot added needs/review Needs review size/xl Size of pull request is huge (see gardener-robot robot/bots/size.py) needs/second-opinion Needs second review by someone else labels Oct 5, 2023
@gardener-robot-ci-3 gardener-robot-ci-3 added reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) needs/ok-to-test Needs approval for testing (check PR in detail before setting this label because PR is run on CI/CD) and removed reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) labels Oct 5, 2023
Copy link
Member

@dimityrmirchev dimityrmirchev left a 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

Comment on lines 322 to 323
// GroupMinimalPodsByNodes groups pods by their nodes. Includes only one pod per reference group while trying
// to return a minimal number of groups.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// 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.

Copy link
Member

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")
Copy link
Member

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]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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 {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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]

@gardener-robot gardener-robot added the needs/changes Needs (more) changes label Oct 9, 2023
@dimityrmirchev dimityrmirchev changed the title pod-files rule checks 1 pod per reference group pod-files rule checks 1 pod per owner reference group Oct 9, 2023
@gardener-robot-ci-3 gardener-robot-ci-3 added reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) and removed reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) labels Oct 9, 2023
@gardener-robot-ci-3 gardener-robot-ci-3 added the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Oct 9, 2023
@gardener-robot-ci-2 gardener-robot-ci-2 removed the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Oct 9, 2023
Copy link
Member

@dimityrmirchev dimityrmirchev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@gardener-robot gardener-robot added reviewed/lgtm Has approval for merging and removed needs/changes Needs (more) changes labels Oct 9, 2023
@dimityrmirchev dimityrmirchev merged commit 4878707 into gardener:main Oct 9, 2023
@gardener-robot gardener-robot added status/closed Issue is closed (either delivered or triaged) and removed needs/review Needs review needs/second-opinion Needs second review by someone else labels Oct 9, 2023
@gardener-robot-ci-3 gardener-robot-ci-3 added the reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) label Oct 9, 2023
@AleksandarSavchev AleksandarSavchev deleted the check-1-pod-by-ref branch February 7, 2024 07:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs/ok-to-test Needs approval for testing (check PR in detail before setting this label because PR is run on CI/CD) reviewed/lgtm Has approval for merging reviewed/ok-to-test Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD) size/xl Size of pull request is huge (see gardener-robot robot/bots/size.py) status/closed Issue is closed (either delivered or triaged)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants