mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
remove fix for 535
This commit is contained in:
parent
ad54683f71
commit
75eee39d7d
1 changed files with 2 additions and 3 deletions
|
@ -26,11 +26,10 @@ 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
|
||||
// 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() == "" {
|
||||
// TODO: https://github.com/nirmata/kyverno/issues/535
|
||||
if info.Blocked {
|
||||
// get resource owners
|
||||
owners = GetOwners(pvb.dclient, info.Resource)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue