diff --git a/pkg/policy/generate/validate.go b/pkg/policy/generate/validate.go index 3fed1e02e2..db0f244110 100644 --- a/pkg/policy/generate/validate.go +++ b/pkg/policy/generate/validate.go @@ -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 {