1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

wildcard for numeric values (#1074)

* wildcard for numeric values

* changed error message
This commit is contained in:
Mohan B E 2020-08-22 01:18:05 +05:30 committed by GitHub
parent 1b7a295860
commit 3feb41e5f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -168,6 +168,7 @@ func validateValueWithStringPatterns(log logr.Logger, value interface{}, pattern
// Handler for single pattern value during validation process
// Detects if pattern has a number
func validateValueWithStringPattern(log logr.Logger, value interface{}, pattern string) bool {
operator := operator.GetOperatorFromStringPattern(pattern)
pattern = pattern[len(operator):]
number, str := getNumberAndStringPartsFromPattern(pattern)
@ -182,9 +183,29 @@ func validateValueWithStringPattern(log logr.Logger, value interface{}, pattern
// Handler for string values
func validateString(log logr.Logger, value interface{}, pattern string, operatorVariable operator.Operator) bool {
if operator.NotEqual == operatorVariable || operator.Equal == operatorVariable {
strValue, ok := value.(string)
var strValue string
var ok bool = false
switch value.(type) {
case float64:
strValue = strconv.FormatFloat(value.(float64), 'E', -1, 64)
ok = true
case int:
strValue = strconv.FormatInt(int64(value.(int)), 10)
ok = true
case int64:
strValue = strconv.FormatInt(value.(int64), 10)
ok = true
case string:
strValue = value.(string)
ok = true
case bool:
strValue = strconv.FormatBool(value.(bool))
ok = true
case nil:
ok = false
}
if !ok {
log.Info("Expected type string", "type", fmt.Sprintf("%T", value), "value", value)
log.Info("unexpected type : ", "type", fmt.Sprintf("%T", value), "value", value)
return false
}