mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
rename file, move append events
This commit is contained in:
parent
bd1a84190b
commit
8af86ab002
1 changed files with 14 additions and 9 deletions
|
@ -63,8 +63,16 @@ func (b *builder) ProcessViolation(info utils.ViolationInfo) error {
|
||||||
modifiedPolicy := policy.DeepCopy()
|
modifiedPolicy := policy.DeepCopy()
|
||||||
modifiedViolations := []types.Violation{}
|
modifiedViolations := []types.Violation{}
|
||||||
|
|
||||||
|
// Create new violation
|
||||||
|
newViolation := types.Violation{
|
||||||
|
Kind: info.Kind,
|
||||||
|
Resource: info.Resource,
|
||||||
|
Rule: info.Rule,
|
||||||
|
Reason: info.Reason,
|
||||||
|
Message: info.Message,
|
||||||
|
}
|
||||||
for _, violation := range modifiedPolicy.PolicyViolation.Violations {
|
for _, violation := range modifiedPolicy.PolicyViolation.Violations {
|
||||||
ok, err := b.IsActive(info.Kind, info.Resource)
|
ok, err := b.IsActive(info.Kind, violation.Resource)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utilruntime.HandleError(err)
|
utilruntime.HandleError(err)
|
||||||
continue
|
continue
|
||||||
|
@ -74,7 +82,7 @@ func (b *builder) ProcessViolation(info utils.ViolationInfo) error {
|
||||||
// Create a removal event
|
// Create a removal event
|
||||||
b.eventBuilder.AddEvent(eventutils.EventInfo{
|
b.eventBuilder.AddEvent(eventutils.EventInfo{
|
||||||
Kind: "Policy",
|
Kind: "Policy",
|
||||||
Resource: info.Resource,
|
Resource: info.Policy,
|
||||||
Rule: info.Rule,
|
Rule: info.Rule,
|
||||||
Reason: info.Reason,
|
Reason: info.Reason,
|
||||||
Message: info.Message,
|
Message: info.Message,
|
||||||
|
@ -82,14 +90,10 @@ func (b *builder) ProcessViolation(info utils.ViolationInfo) error {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// If violation already exists for this rule, we update the violation
|
// If violation already exists for this rule, we update the violation
|
||||||
if violation.Kind == info.Kind &&
|
//TODO: update violation, instead of re-creating one every time
|
||||||
violation.Resource == info.Resource &&
|
|
||||||
violation.Rule == info.Rule {
|
|
||||||
violation.Reason = info.Reason
|
|
||||||
violation.Message = info.Message
|
|
||||||
}
|
|
||||||
modifiedViolations = append(modifiedViolations, violation)
|
|
||||||
}
|
}
|
||||||
|
modifiedViolations = append(modifiedViolations, newViolation)
|
||||||
|
|
||||||
modifiedPolicy.PolicyViolation.Violations = modifiedViolations
|
modifiedPolicy.PolicyViolation.Violations = modifiedViolations
|
||||||
return b.Patch(policy, modifiedPolicy)
|
return b.Patch(policy, modifiedPolicy)
|
||||||
|
|
||||||
|
@ -122,6 +126,7 @@ func (b *builder) Patch(policy *types.Policy, updatedPolicy *types.Policy) error
|
||||||
}
|
}
|
||||||
_, err = b.controller.PatchPolicy(policy.Name, mergetypes.MergePatchType, patchBytes)
|
_, err = b.controller.PatchPolicy(policy.Name, mergetypes.MergePatchType, patchBytes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
||||||
// Unable to patch
|
// Unable to patch
|
||||||
return err
|
return err
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue