1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 17:37:12 +00:00
kyverno/pkg/event/util.go
shuting 4aff3de0fe
Re-implement #4159 (#4165)
Signed-off-by: ShutingZhao <shuting@nirmata.com>
2022-06-28 09:54:22 +00:00

15 lines
253 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
}