mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
feat: support all valid jsonpatches in validation webhook (#9476)
Signed-off-by: Lukas Wöhrl <lukas.woehrl@plentymarkets.com> Co-authored-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
2f4b823030
commit
349e363a41
1 changed files with 4 additions and 2 deletions
|
@ -89,10 +89,12 @@ func validateJSONPatch(patch string, ruleIdx int) error {
|
|||
}
|
||||
for _, operation := range decodedPatch {
|
||||
op := operation.Kind()
|
||||
if op != "add" && op != "remove" && op != "replace" {
|
||||
requiresValue := op != "remove" && op != "move" && op != "copy"
|
||||
validOperation := op == "add" || op == "remove" || op == "replace" || op == "move" || op == "copy" || op == "test"
|
||||
if !validOperation {
|
||||
return fmt.Errorf("unexpected kind: spec.rules[%d]: %s", ruleIdx, op)
|
||||
}
|
||||
if op != "remove" {
|
||||
if requiresValue {
|
||||
if _, err := operation.ValueInterface(); err != nil {
|
||||
return fmt.Errorf("invalid value: spec.rules[%d]: %s", ruleIdx, err)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue