1
0
Fork 0
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:
Shuting Zhao 2019-11-11 21:06:09 -08:00
parent 85d04f609c
commit 546a25d025

View file

@ -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