mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
added check for misspelled fields in condition (#2707)
* added check for misspelled fields in condition Signed-off-by: anushkamittal20 <anumittal4641@gmail.com> * corrections in error message Signed-off-by: anushkamittal20 <anumittal4641@gmail.com>
This commit is contained in:
parent
b5615b6380
commit
7d423f97c4
1 changed files with 3 additions and 0 deletions
|
@ -997,6 +997,9 @@ func validateConditions(conditions apiextensions.JSON, schemaKey string) (string
|
|||
// validateConditionValues validates whether all the values under the 'value' field of a 'conditions' field
|
||||
// are apt with respect to the provided 'condition.key'
|
||||
func validateConditionValues(c kyverno.Condition) (string, error) {
|
||||
if c.Key == nil || c.Value == nil || c.Operator == "" {
|
||||
return "", fmt.Errorf("entered value of `key`, `value` or `operator` is missing or misspelled")
|
||||
}
|
||||
switch strings.ReplaceAll(c.Key.(string), " ", "") {
|
||||
case "{{request.operation}}":
|
||||
return validateConditionValuesKeyRequestOperation(c)
|
||||
|
|
Loading…
Add table
Reference in a new issue