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-06-26 12:41:42 -07:00

16 lines
289 B
Go

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