mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix: case where deny message is not a string (#5678)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
3eede76fc4
commit
3bd1f82d2e
1 changed files with 6 additions and 4 deletions
|
@ -430,18 +430,20 @@ func (v *validator) getDenyMessage(deny bool) string {
|
|||
if !deny {
|
||||
return fmt.Sprintf("validation rule '%s' passed.", v.rule.Name)
|
||||
}
|
||||
|
||||
msg := v.rule.Validation.Message
|
||||
if msg == "" {
|
||||
return fmt.Sprintf("validation error: rule %s failed", v.rule.Name)
|
||||
}
|
||||
|
||||
raw, err := variables.SubstituteAll(v.log, v.policyContext.jsonContext, msg)
|
||||
if err != nil {
|
||||
return msg
|
||||
}
|
||||
|
||||
return raw.(string)
|
||||
switch typed := raw.(type) {
|
||||
case string:
|
||||
return typed
|
||||
default:
|
||||
return "the produced message didn't resolve to a string, check your policy definition."
|
||||
}
|
||||
}
|
||||
|
||||
func getSpec(v *validator) (podSpec *corev1.PodSpec, metadata *metav1.ObjectMeta, err error) {
|
||||
|
|
Loading…
Add table
Reference in a new issue