1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-15 17:51:20 +00:00
kyverno/pkg/event/util.go
2019-12-26 11:50:41 -08:00

17 lines
287 B
Go

package event
const eventWorkQueueName = "kyverno-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
Source Source
}