mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
15 lines
253 B
Go
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
|
|
}
|