mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix: add message to bypass schema validation when it fails (#6604)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
1d2b76b371
commit
ad3bf969bf
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ func Validate(policy, oldPolicy kyvernov1.PolicyInterface, client dclient.Interf
|
|||
}
|
||||
if !mock && (spec.SchemaValidation == nil || *spec.SchemaValidation) {
|
||||
if err := openApiManager.ValidatePolicyMutation(policy); err != nil {
|
||||
return warnings, err
|
||||
return warnings, fmt.Errorf("%s (you can bypass schema validation by setting `spec.schemaValidation: false`)", err)
|
||||
}
|
||||
}
|
||||
return warnings, nil
|
||||
|
|
Loading…
Add table
Reference in a new issue