1
0
Fork 0
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:
shivkumar dudhani 2019-12-03 17:15:50 -08:00
parent 0f6f3c1e02
commit eed7115563

View file

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