mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix: consider generateName when matching resources (#4945)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
a62a0c1f9f
commit
56d90888e0
2 changed files with 1030 additions and 2 deletions
|
@ -150,8 +150,13 @@ func doesResourceMatchConditionBlock(conditionBlock kyvernov1.ResourceDescriptio
|
|||
}
|
||||
}
|
||||
|
||||
resourceName := resource.GetName()
|
||||
if resourceName == "" {
|
||||
resourceName = resource.GetGenerateName()
|
||||
}
|
||||
|
||||
if conditionBlock.Name != "" {
|
||||
if !checkName(conditionBlock.Name, resource.GetName()) {
|
||||
if !checkName(conditionBlock.Name, resourceName) {
|
||||
errs = append(errs, fmt.Errorf("name does not match"))
|
||||
}
|
||||
}
|
||||
|
@ -159,7 +164,7 @@ func doesResourceMatchConditionBlock(conditionBlock kyvernov1.ResourceDescriptio
|
|||
if len(conditionBlock.Names) > 0 {
|
||||
noneMatch := true
|
||||
for i := range conditionBlock.Names {
|
||||
if checkName(conditionBlock.Names[i], resource.GetName()) {
|
||||
if checkName(conditionBlock.Names[i], resourceName) {
|
||||
noneMatch = false
|
||||
break
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue