1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix: hardening policy validation for generate cloneList (#4881)

Signed-off-by: prateekpandey14 <prateek.pandey@nirmata.com>
This commit is contained in:
Prateek Pandey 2022-10-11 23:35:07 +05:30 committed by GitHub
parent ea37d46137
commit 23ab7390a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,6 +55,13 @@ func (g *Generate) Validate() (string, error) {
if kind == "" {
return "kind", fmt.Errorf("kind cannot be empty")
}
} else {
if name != "" {
return "name", fmt.Errorf("with cloneList, generate.name. should not be specified.")
}
if kind != "" {
return "kind", fmt.Errorf("with cloneList, generate.kind. should not be specified.")
}
}
if rule.CloneList.Selector != nil {