1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/pkg/event/util.go
shivkumar dudhani 4166d13684 correct case
2019-07-19 16:18:36 -07:00

18 lines
320 B
Go

package event
const eventSource = "policy-controller"
const eventWorkQueueName = "policy-controller-events"
const eventWorkerThreadCount = 1
const workQueueRetryLimit = 1
//Info defines the event details
type Info struct {
Kind string
Name string
Namespace string
Reason string
Message string
}