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
2022-06-28 11:58:23 +08:00

15 lines
254 B
Go

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