mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
add missing file
This commit is contained in:
parent
85d04f609c
commit
546a25d025
1 changed files with 7 additions and 0 deletions
|
@ -48,6 +48,13 @@ func Validate(policyContext PolicyContext) (response EngineResponse) {
|
|||
if !rule.HasValidate() {
|
||||
continue
|
||||
}
|
||||
|
||||
if !matchAdmissionInfo(rule, policyContext.AdmissionInfo) {
|
||||
glog.V(3).Infof("rule '%s' cannot be applied on %s/%s/%s, admission permission: %v",
|
||||
rule.Name, resource.GetKind(), resource.GetNamespace(), resource.GetName(), policyContext.AdmissionInfo)
|
||||
continue
|
||||
}
|
||||
|
||||
// check if the resource satisfies the filter conditions defined in the rule
|
||||
// TODO: this needs to be extracted, to filter the resource so that we can avoid passing resources that
|
||||
// dont statisfy a policy rule resource description
|
||||
|
|
Loading…
Add table
Reference in a new issue