1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-01-20 18:52:16 +00:00
kyverno/pkg/event/util.go
Jim Bugwadia 65193feccb
update logging, naming, and event retry (#959)
* update logging and naming

* check per policy patch count
2020-06-30 11:53:27 -07:00

15 lines
254 B
Go

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