mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
19 lines
390 B
Go
19 lines
390 B
Go
package violation
|
|
|
|
// Source for the events recorder
|
|
const violationEventSource = "policy-controller"
|
|
|
|
// Name for the workqueue to store the events
|
|
const workqueueViolationName = "Policy-Violations"
|
|
|
|
// Event Reason
|
|
const violationEventResrouce = "Violation"
|
|
|
|
// Info input details
|
|
type Info struct {
|
|
Kind string
|
|
Resource string
|
|
Policy string
|
|
RuleName string
|
|
Reason string
|
|
}
|