1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/pkg/event/util.go
2019-07-24 14:25:28 -04:00

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
}