1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 17:37:12 +00:00
kyverno/pkg/engine/api/selector.go

13 lines
405 B
Go
Raw Normal View History

package api
import (
kyvernov2 "github.com/kyverno/kyverno/api/kyverno/v2"
)
// PolicyExceptionSelector is an abstract interface used to resolve poliicy exceptions
type PolicyExceptionSelector interface {
// Find returns policy exceptions matching a given policy name and rule name.
// Objects returned here must be treated as read-only.
Find(string, string) ([]*kyvernov2.PolicyException, error)
}