mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
policy violation name format update (#502)
This commit is contained in:
parent
61b202c64a
commit
89c298b5f2
2 changed files with 2 additions and 2 deletions
|
@ -331,8 +331,8 @@ func buildPVObj(policyName string, resourceSpec kyverno.ResourceSpec, rules []ky
|
|||
"policy": policyName,
|
||||
"resource": resourceSpec.ToKey(),
|
||||
}
|
||||
pv.SetGenerateName(fmt.Sprintf("%s-", policyName))
|
||||
pv.SetLabels(labelMap)
|
||||
pv.SetGenerateName("pv-")
|
||||
return pv
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ func buildNamespacedPVObj(policy string, resource kyverno.ResourceSpec, fRules [
|
|||
"policy": policy,
|
||||
"resource": resource.ToKey(),
|
||||
}
|
||||
pv.SetGenerateName("pv-")
|
||||
pv.SetGenerateName(fmt.Sprintf("%s-", policy))
|
||||
pv.SetLabels(labelMap)
|
||||
return pv
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue