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:
parent
ea37d46137
commit
23ab7390a3
1 changed files with 7 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue