mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Merge pull request #322 from nirmata/307_feature
Validate anchor values of type object/[map]interface{}
This commit is contained in:
commit
f10b5fdfe8
1 changed files with 15 additions and 2 deletions
|
@ -51,8 +51,10 @@ func ValidateValueWithPattern(value, pattern interface{}) bool {
|
|||
return validateValueWithStringPatterns(value, typedPattern)
|
||||
case nil:
|
||||
return validateValueWithNilPattern(value)
|
||||
case map[string]interface{}, []interface{}:
|
||||
glog.Warning("Maps and arrays as patterns are not supported")
|
||||
case map[string]interface{}:
|
||||
return validateValueWithMapPattern(value, typedPattern)
|
||||
case []interface{}:
|
||||
glog.Warning("Arrays as patterns are not supported")
|
||||
return false
|
||||
default:
|
||||
glog.Warningf("Unknown type as pattern: %T\n", pattern)
|
||||
|
@ -60,6 +62,17 @@ func ValidateValueWithPattern(value, pattern interface{}) bool {
|
|||
}
|
||||
}
|
||||
|
||||
func validateValueWithMapPattern(value interface{}, typedPattern map[string]interface{}) bool {
|
||||
// verify the type of the resource value is map[string]interface,
|
||||
// we only check for existance of object, not the equality of content and value
|
||||
_, ok := value.(map[string]interface{})
|
||||
if !ok {
|
||||
glog.Warningf("Expected map[string]interface{}, found %T\n", value)
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
// Handler for int values during validation process
|
||||
func validateValueWithIntPattern(value interface{}, pattern int64) bool {
|
||||
switch typedValue := value.(type) {
|
||||
|
|
Loading…
Add table
Reference in a new issue