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

16 lines
253 B
Go
Raw Normal View History

2019-05-10 07:05:21 +00:00
package event
const eventWorkQueueName = "kyverno-events"
2019-05-10 07:05:21 +00:00
2019-07-24 18:25:28 +00:00
const workQueueRetryLimit = 5
2019-07-19 23:17:10 +00:00
2019-05-10 19:36:55 +00:00
//Info defines the event details
type Info struct {
2019-06-26 19:41:42 +00:00
Kind string
Name string
Namespace string
Reason string
Message string
Source Source
2019-05-10 17:38:38 +00:00
}