1
0
Fork 0
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:
shivkumar dudhani 2019-12-11 11:18:38 -08:00
parent ad54683f71
commit 75eee39d7d

View file

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