mirror of
https://github.com/kyverno/kyverno.git
synced 2025-01-20 18:52:16 +00:00
94d9bbe73f
Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com>
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)
|
|
}
|