-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
[PodSecurity] Add annotations denoting the exemption reason and the enforcement policy used #105908
Conversation
@stlaz: This issue is currently awaiting triage. If a SIG or subproject determines this is a relevant issue, they will accept it by applying the The Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Hi @stlaz. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
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.
Thanks! Left a few small suggestions.
@@ -427,7 +437,7 @@ func (a *Admission) EvaluatePod(ctx context.Context, nsPolicy api.Policy, nsPoli | |||
|
|||
// TODO: reuse previous evaluation if audit level+version is the same as enforce level+version | |||
if result := policy.AggregateCheckResults(a.Evaluator.EvaluatePod(nsPolicy.Audit, podMetadata, podSpec)); !result.Allowed { | |||
auditAnnotations["audit"] = fmt.Sprintf( | |||
auditAnnotations["audit-violation"] = fmt.Sprintf( |
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.
KEP has this pluralized. Singular might make more sense, but we should update the KEP to match.
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 think I might have just overlooked the plural, this should be fixed now
if a.exemptNamespace(attrs.GetNamespace()) { | ||
return allowedByExemptResponse("namespace") | ||
} | ||
|
||
if a.exemptUser(attrs.GetUserName()) { | ||
return allowedByExemptResponse("user") |
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 think we should cache a shared response for these (one for each exemption). The exemption flow isn't quite as performance critical as privileged
, but I'd still like to keep it fast.
The runtimeClass
exemption doesn't need to be as fast, but it probably simplifies things to just make it consistent with the other 2.
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 used the same pattern as the allowed response is using, then
ExemptionReasonLabel = labelPrefix + "exempt" | ||
AuditViolationLabel = labelPrefix + "audit-violation" | ||
EnforcedPolicyLabel = labelPrefix + "enforce-policy" |
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.
Currently unused. I like having these here though, so I recommend updating admission.go
to refer to them. Also rename.
ExemptionReasonLabel = labelPrefix + "exempt" | |
AuditViolationLabel = labelPrefix + "audit-violation" | |
EnforcedPolicyLabel = labelPrefix + "enforce-policy" | |
ExemptionReasonAnnotationKey = "exempt" | |
AuditViolationAnnotationKey = "audit-violation" | |
EnforcedPolicyAnnotationKey = "enforce-policy" |
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.
Thanks for the suggestion, it should be incorporated in the PR now.
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
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: stlaz, tallclair The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/ok-to-test |
/retest |
What type of PR is this?
/kind feature
What this PR does / why we need it:
This PR adds a couple of annotations for the PodSecurity admission. These annotations are supposed to bring more clarity into how the pod was being evaluated. It also changes the
audit
annotation on audit violations toaudit-violation
to distinguish it from the namespace annotation used to mark the audit policy level.Which issue(s) this PR fixes:
Fixes #103923
Special notes for your reviewer:
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: