mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 15:37:19 +00:00
12 lines
405 B
Go
12 lines
405 B
Go
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)
|
|
}
|