mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
18 lines
320 B
Go
18 lines
320 B
Go
package event
|
|
|
|
const eventSource = "policy-controller"
|
|
|
|
const eventWorkQueueName = "policy-controller-events"
|
|
|
|
const eventWorkerThreadCount = 1
|
|
|
|
const workQueueRetryLimit = 5
|
|
|
|
//Info defines the event details
|
|
type Info struct {
|
|
Kind string
|
|
Name string
|
|
Namespace string
|
|
Reason string
|
|
Message string
|
|
}
|