mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
a60dc00392
* feat: migrate events to events.k8s.io group Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * fix: kuttl event tests Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * migrate background events to events.k8s.io Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * update kuttl tests Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * remove ResourceSkipped from actions Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> --------- Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com>
13 lines
352 B
Go
13 lines
352 B
Go
package event
|
|
|
|
// Action types of Event Actions
|
|
type Action string
|
|
|
|
const (
|
|
ResourceBlocked Action = "Resource Blocked"
|
|
ResourcePassed Action = "Resource Passed"
|
|
ResourceGenerated Action = "Resource Generated"
|
|
ResourceMutated Action = "Resource Mutated"
|
|
ResourceCleanedUp Action = "Resource Cleaned Up"
|
|
None Action = "None"
|
|
)
|