1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
kyverno/pkg/event/util.go
2020-01-24 09:37:12 -08:00

15 lines
253 B
Go

package event
const eventWorkQueueName = "kyverno-events"
const workQueueRetryLimit = 5
//Info defines the event details
type Info struct {
Kind string
Name string
Namespace string
Reason string
Message string
Source Source
}