1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/pkg/event/reason.go

19 lines
255 B
Go
Raw Normal View History

2019-05-10 00:05:21 -07:00
package event
// Reason types of Event Reasons
2019-05-10 00:05:21 -07:00
type Reason int
const (
PolicyViolation Reason = iota
PolicyApplied
PolicyError
2019-05-10 00:05:21 -07:00
)
func (r Reason) String() string {
return [...]string{
"PolicyViolation",
"PolicyApplied",
"PolicyError",
2019-05-10 00:05:21 -07:00
}[r]
}