mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
pv for resource with no names assigned
This commit is contained in:
parent
0f6f3c1e02
commit
eed7115563
1 changed files with 4 additions and 1 deletions
|
@ -26,8 +26,11 @@ func newPvBuilder(dclient *client.Client) *pvBuilder {
|
|||
return &pvb
|
||||
}
|
||||
func (pvb *pvBuilder) generate(info Info) []kyverno.PolicyViolation {
|
||||
// https://github.com/nirmata/kyverno/issues/535
|
||||
var owners []kyverno.ResourceSpec
|
||||
if !info.Blocked {
|
||||
// get the owners if the resource is blocked or
|
||||
// the resource does not have a name assigned yet(uses generateName)
|
||||
if info.Blocked || info.Resource.GetName() == "" {
|
||||
// get resource owners
|
||||
owners = GetOwners(pvb.dclient, info.Resource)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue