mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
15 lines
267 B
Go
15 lines
267 B
Go
package event
|
|
|
|
const eventSource = "policy-controller"
|
|
|
|
const eventWorkQueueName = "policy-controller-events"
|
|
|
|
const eventWorkerThreadCount = 1
|
|
|
|
//Info defines the event details
|
|
type Info struct {
|
|
Kind string
|
|
Resource string
|
|
Reason string
|
|
Message string
|
|
}
|